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

Side by Side Diff: chrome/browser/vr/ui_interface.h

Issue 2975683002: Add GeolocationManager service (Closed)
Patch Set: Rebase Created 3 years, 5 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 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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_VR_UI_INTERFACE_H_ 5 #ifndef CHROME_BROWSER_VR_UI_INTERFACE_H_
6 #define CHROME_BROWSER_VR_UI_INTERFACE_H_ 6 #define CHROME_BROWSER_VR_UI_INTERFACE_H_
7 7
8 #include "components/security_state/core/security_state.h" 8 #include "components/security_state/core/security_state.h"
9 9
10 class SkBitmap; 10 class SkBitmap;
(...skipping 23 matching lines...) Expand all
34 virtual void SetWebVrSecureOrigin(bool secure) = 0; 34 virtual void SetWebVrSecureOrigin(bool secure) = 0;
35 virtual void SetLoading(bool loading) = 0; 35 virtual void SetLoading(bool loading) = 0;
36 virtual void SetLoadProgress(float progress) = 0; 36 virtual void SetLoadProgress(float progress) = 0;
37 virtual void SetIsExiting() = 0; 37 virtual void SetIsExiting() = 0;
38 virtual void SetHistoryButtonsEnabled(bool can_go_back, 38 virtual void SetHistoryButtonsEnabled(bool can_go_back,
39 bool can_go_forward) = 0; 39 bool can_go_forward) = 0;
40 virtual void SetVideoCapturingIndicator(bool enabled) = 0; 40 virtual void SetVideoCapturingIndicator(bool enabled) = 0;
41 virtual void SetScreenCapturingIndicator(bool enabled) = 0; 41 virtual void SetScreenCapturingIndicator(bool enabled) = 0;
42 virtual void SetAudioCapturingIndicator(bool enabled) = 0; 42 virtual void SetAudioCapturingIndicator(bool enabled) = 0;
43 virtual void SetBluetoothConnectedIndicator(bool enabled) = 0; 43 virtual void SetBluetoothConnectedIndicator(bool enabled) = 0;
44 virtual void SetLocationAccessIndicator(bool enabled) = 0;
44 virtual void SetSplashScreenIcon(const SkBitmap& bitmap) = 0; 45 virtual void SetSplashScreenIcon(const SkBitmap& bitmap) = 0;
45 46
46 // Tab handling. 47 // Tab handling.
47 virtual void InitTabList() {} 48 virtual void InitTabList() {}
48 virtual void AppendToTabList(bool incognito, 49 virtual void AppendToTabList(bool incognito,
49 int id, 50 int id,
50 const base::string16& title) {} 51 const base::string16& title) {}
51 virtual void FlushTabList() {} 52 virtual void FlushTabList() {}
52 virtual void UpdateTab(bool incognito, int id, const std::string& title) {} 53 virtual void UpdateTab(bool incognito, int id, const std::string& title) {}
53 virtual void RemoveTab(bool incognito, int id) {} 54 virtual void RemoveTab(bool incognito, int id) {}
54 }; 55 };
55 56
56 } // namespace vr 57 } // namespace vr
57 58
58 #endif // CHROME_BROWSER_VR_UI_INTERFACE_H_ 59 #endif // CHROME_BROWSER_VR_UI_INTERFACE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698