| Index: chrome/browser/android/vr_shell/ui_scene_manager.h
|
| diff --git a/chrome/browser/android/vr_shell/ui_scene_manager.h b/chrome/browser/android/vr_shell/ui_scene_manager.h
|
| index ef917ad5e75a5ee9047b1b309d50fb326c1c7d46..8a6cf3cb99d03ac546bebcdf0bd1c9fc79da5340 100644
|
| --- a/chrome/browser/android/vr_shell/ui_scene_manager.h
|
| +++ b/chrome/browser/android/vr_shell/ui_scene_manager.h
|
| @@ -35,11 +35,13 @@ class UiSceneManager {
|
| void SetURL(const GURL& gurl);
|
| void SetWebVrSecureOrigin(bool secure);
|
| void SetWebVrMode(bool web_vr);
|
| - // These methods are currently stubbed.
|
| void SetSecurityLevel(int level);
|
| void SetLoading(bool loading);
|
| void SetLoadProgress(float progress);
|
| void SetHistoryButtonsEnabled(bool can_go_back, bool can_go_forward);
|
| + void SetVideoCapturingIndicator(bool enabled);
|
| + void SetScreenCapturingIndicator(bool enabled);
|
| + void SetAudioCapturingIndicator(bool enabled);
|
|
|
| void OnAppButtonClicked();
|
| void OnAppButtonGesturePerformed(UiInterface::Direction direction);
|
| @@ -66,8 +68,8 @@ class UiSceneManager {
|
| UiElement* permanent_security_warning_ = nullptr;
|
| UiElement* transient_security_warning_ = nullptr;
|
| UiElement* main_content_ = nullptr;
|
| - UiElement* audio_input_indicator_ = nullptr;
|
| - UiElement* video_input_indicator_ = nullptr;
|
| + UiElement* audio_capture_indicator_ = nullptr;
|
| + UiElement* video_capture_indicator_ = nullptr;
|
| UrlBar* url_bar_ = nullptr;
|
| LoadingIndicator* loading_indicator_ = nullptr;
|
|
|
|
|