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

Unified Diff: chrome/browser/android/vr_shell/ui_scene_manager.h

Issue 2890563003: VR: Update UiSceneManager with audio/video capturing flags (Closed)
Patch Set: Use ui_ in VrShell 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 side-by-side diff with in-line comments
Download patch
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..779dbe859567de7c4f22067bfb86ddbbc8e315ae 100644
--- a/chrome/browser/android/vr_shell/ui_scene_manager.h
+++ b/chrome/browser/android/vr_shell/ui_scene_manager.h
@@ -40,6 +40,9 @@ class UiSceneManager {
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 +69,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;

Powered by Google App Engine
This is Rietveld 408576698