Fix UnlockEndpointIsDelayed again.
[chromium-blink-merge.git] / chrome / browser / android / mock_location_settings.h
blobe1f3721ccfdd0ba61e6253d74cf78bfdab1c2691
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
3 // found in the LICENSE file.
5 #ifndef CHROME_BROWSER_ANDROID_MOCK_LOCATION_SETTINGS_H_
6 #define CHROME_BROWSER_ANDROID_MOCK_LOCATION_SETTINGS_H_
8 #include "chrome/browser/android/location_settings.h"
10 // Mock implementation of LocationSettings for unit tests.
11 class MockLocationSettings : public LocationSettings {
12 public:
13 MockLocationSettings();
14 ~MockLocationSettings() override;
16 static void SetLocationStatus(bool master, bool google_apps);
18 bool IsLocationEnabled() override;
20 bool IsMasterLocationSettingEnabled();
21 bool IsGoogleAppsLocationSettingEnabled();
23 private:
24 static bool master_location_enabled;
25 static bool google_apps_location_enabled;
27 DISALLOW_COPY_AND_ASSIGN(MockLocationSettings);
30 #endif // CHROME_BROWSER_ANDROID_MOCK_LOCATION_SETTINGS_H_