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

Side by Side Diff: chrome/browser/android/vr_shell/ui_scene_manager.h

Issue 2902783002: VR: Add URL bar security-related coloring and emphasis. (Closed)
Patch Set: Another test case for HTTPS + not secure. Created 3 years, 7 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_ANDROID_VR_SHELL_UI_SCENE_MANAGER_H_ 5 #ifndef CHROME_BROWSER_ANDROID_VR_SHELL_UI_SCENE_MANAGER_H_
6 #define CHROME_BROWSER_ANDROID_VR_SHELL_UI_SCENE_MANAGER_H_ 6 #define CHROME_BROWSER_ANDROID_VR_SHELL_UI_SCENE_MANAGER_H_
7 7
8 #include "base/macros.h" 8 #include "base/macros.h"
9 #include "base/memory/weak_ptr.h" 9 #include "base/memory/weak_ptr.h"
10 #include "base/timer/timer.h" 10 #include "base/timer/timer.h"
11 #include "base/values.h" 11 #include "base/values.h"
12 #include "chrome/browser/android/vr_shell/ui_interface.h" 12 #include "chrome/browser/android/vr_shell/ui_interface.h"
13 #include "device/vr/vr_types.h" 13 #include "device/vr/vr_types.h"
14 14
15 class GURL;
16
17 namespace vr_shell { 15 namespace vr_shell {
18 16
19 class LoadingIndicator; 17 class LoadingIndicator;
20 class UiElement; 18 class UiElement;
21 class UiScene; 19 class UiScene;
22 class UrlBar; 20 class UrlBar;
23 class VrBrowserInterface; 21 class VrBrowserInterface;
24 22
25 class UiSceneManager { 23 class UiSceneManager {
26 public: 24 public:
27 UiSceneManager(VrBrowserInterface* browser, 25 UiSceneManager(VrBrowserInterface* browser,
28 UiScene* scene, 26 UiScene* scene,
29 bool in_cct, 27 bool in_cct,
30 bool in_web_vr); 28 bool in_web_vr);
31 ~UiSceneManager(); 29 ~UiSceneManager();
32 30
33 base::WeakPtr<UiSceneManager> GetWeakPtr(); 31 base::WeakPtr<UiSceneManager> GetWeakPtr();
34 32
35 void SetFullscreen(bool fullscreen); 33 void SetFullscreen(bool fullscreen);
36 void SetURL(const GURL& gurl); 34 void SetURL(const GURL& gurl);
37 void SetWebVrSecureOrigin(bool secure); 35 void SetWebVrSecureOrigin(bool secure);
38 void SetWebVrMode(bool web_vr); 36 void SetWebVrMode(bool web_vr);
39 void SetSecurityLevel(int level); 37 void SetSecurityLevel(security_state::SecurityLevel level);
40 void SetLoading(bool loading); 38 void SetLoading(bool loading);
41 void SetLoadProgress(float progress); 39 void SetLoadProgress(float progress);
42 void SetIsExiting(); 40 void SetIsExiting();
43 // These methods are currently stubbed. 41 // These methods are currently stubbed.
44 void SetHistoryButtonsEnabled(bool can_go_back, bool can_go_forward); 42 void SetHistoryButtonsEnabled(bool can_go_back, bool can_go_forward);
45 void SetVideoCapturingIndicator(bool enabled); 43 void SetVideoCapturingIndicator(bool enabled);
46 void SetScreenCapturingIndicator(bool enabled); 44 void SetScreenCapturingIndicator(bool enabled);
47 void SetAudioCapturingIndicator(bool enabled); 45 void SetAudioCapturingIndicator(bool enabled);
48 46
49 void OnAppButtonClicked(); 47 void OnAppButtonClicked();
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 base::OneShotTimer security_warning_timer_; 98 base::OneShotTimer security_warning_timer_;
101 99
102 base::WeakPtrFactory<UiSceneManager> weak_ptr_factory_; 100 base::WeakPtrFactory<UiSceneManager> weak_ptr_factory_;
103 101
104 DISALLOW_COPY_AND_ASSIGN(UiSceneManager); 102 DISALLOW_COPY_AND_ASSIGN(UiSceneManager);
105 }; 103 };
106 104
107 } // namespace vr_shell 105 } // namespace vr_shell
108 106
109 #endif // CHROME_BROWSER_ANDROID_VR_SHELL_UI_SCENE_MANAGER_H_ 107 #endif // CHROME_BROWSER_ANDROID_VR_SHELL_UI_SCENE_MANAGER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698