| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_ANDROID_MOCK_LOCATION_SETTINGS_H_ | 5 #ifndef CHROME_BROWSER_ANDROID_MOCK_LOCATION_SETTINGS_H_ |
| 6 #define CHROME_BROWSER_ANDROID_MOCK_LOCATION_SETTINGS_H_ | 6 #define CHROME_BROWSER_ANDROID_MOCK_LOCATION_SETTINGS_H_ |
| 7 | 7 |
| 8 #include "base/macros.h" |
| 8 #include "chrome/browser/android/location_settings.h" | 9 #include "chrome/browser/android/location_settings.h" |
| 9 | 10 |
| 10 // Mock implementation of LocationSettings for unit tests. | 11 // Mock implementation of LocationSettings for unit tests. |
| 11 class MockLocationSettings : public LocationSettings { | 12 class MockLocationSettings : public LocationSettings { |
| 12 public: | 13 public: |
| 13 MockLocationSettings(); | 14 MockLocationSettings(); |
| 14 ~MockLocationSettings() override; | 15 ~MockLocationSettings() override; |
| 15 | 16 |
| 16 static void SetLocationStatus(bool master, bool google_apps); | 17 static void SetLocationStatus(bool master, bool google_apps); |
| 17 | 18 |
| 18 bool CanSitesRequestLocationPermission( | 19 bool CanSitesRequestLocationPermission( |
| 19 content::WebContents* web_contents) override; | 20 content::WebContents* web_contents) override; |
| 20 | 21 |
| 21 bool IsMasterLocationSettingEnabled(); | 22 bool IsMasterLocationSettingEnabled(); |
| 22 bool IsGoogleAppsLocationSettingEnabled(); | 23 bool IsGoogleAppsLocationSettingEnabled(); |
| 23 | 24 |
| 24 private: | 25 private: |
| 25 static bool master_location_enabled; | 26 static bool master_location_enabled; |
| 26 static bool google_apps_location_enabled; | 27 static bool google_apps_location_enabled; |
| 27 | 28 |
| 28 DISALLOW_COPY_AND_ASSIGN(MockLocationSettings); | 29 DISALLOW_COPY_AND_ASSIGN(MockLocationSettings); |
| 29 }; | 30 }; |
| 30 | 31 |
| 31 #endif // CHROME_BROWSER_ANDROID_MOCK_LOCATION_SETTINGS_H_ | 32 #endif // CHROME_BROWSER_ANDROID_MOCK_LOCATION_SETTINGS_H_ |
| OLD | NEW |