Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(140)

Side by Side Diff: chrome/browser/android/mock_location_settings.h

Issue 2709883005: Stubs for triggering the LSD in Clank (Closed)
Patch Set: Group location settings dialog enums into a single java_cpp_enum rule Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 "base/macros.h"
9 #include "chrome/browser/android/location_settings.h" 9 #include "chrome/browser/android/location_settings.h"
10 10
11 // Mock implementation of LocationSettings for unit tests. 11 // Mock implementation of LocationSettings for unit tests.
12 class MockLocationSettings : public LocationSettings { 12 class MockLocationSettings : public LocationSettings {
13 public: 13 public:
14 MockLocationSettings(); 14 MockLocationSettings();
15 ~MockLocationSettings() override; 15 ~MockLocationSettings() override;
16 16
17 static void SetLocationStatus(bool master, bool google_apps); 17 static void SetLocationStatus(bool master, bool google_apps);
18 18
19 bool CanSitesRequestLocationPermission( 19 bool CanSitesRequestLocationPermission(
20 content::WebContents* web_contents) override; 20 content::WebContents* web_contents) override;
21 21
22 bool CanPromptToEnableSystemLocationSetting() override;
23
24 void PromptToEnableSystemLocationSetting(
25 const LocationSettingsDialogContext prompt_context,
26 content::WebContents* web_contents,
27 LocationSettingsDialogOutcomeCallback callback) override;
28
22 bool IsMasterLocationSettingEnabled(); 29 bool IsMasterLocationSettingEnabled();
23 bool IsGoogleAppsLocationSettingEnabled(); 30 bool IsGoogleAppsLocationSettingEnabled();
24 31
25 private: 32 private:
26 static bool master_location_enabled; 33 static bool master_location_enabled;
27 static bool google_apps_location_enabled; 34 static bool google_apps_location_enabled;
28 35
29 DISALLOW_COPY_AND_ASSIGN(MockLocationSettings); 36 DISALLOW_COPY_AND_ASSIGN(MockLocationSettings);
30 }; 37 };
31 38
32 #endif // CHROME_BROWSER_ANDROID_MOCK_LOCATION_SETTINGS_H_ 39 #endif // CHROME_BROWSER_ANDROID_MOCK_LOCATION_SETTINGS_H_
OLDNEW
« no previous file with comments | « chrome/browser/android/location_settings_impl.cc ('k') | chrome/browser/android/mock_location_settings.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698