#ifndef CHROME_BROWSER_ANDROID_GOOGLE_LOCATION_SETTINGS_HELPER_H_
#define CHROME_BROWSER_ANDROID_GOOGLE_LOCATION_SETTINGS_HELPER_H_
#include "base/values.h"
class GoogleLocationSettingsHelper {
public:
virtual ~GoogleLocationSettingsHelper() {}
static GoogleLocationSettingsHelper* Create();
virtual std::string GetAcceptButtonLabel(bool allow) = 0;
virtual void ShowGoogleLocationSettings() = 0;
virtual bool IsAllowLabel() = 0;
virtual bool IsMasterLocationSettingEnabled() = 0;
virtual bool IsGoogleAppsLocationSettingEnabled() = 0;
protected:
GoogleLocationSettingsHelper() {}
private:
DISALLOW_COPY_AND_ASSIGN(GoogleLocationSettingsHelper);
};
#endif