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

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

Issue 2876403003: VR: text for audio/video input capture notifications (Closed)
Patch Set: removing unnecessary comments 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.cc
diff --git a/chrome/browser/android/vr_shell/ui_scene_manager.cc b/chrome/browser/android/vr_shell/ui_scene_manager.cc
index 07473440f51ecc6e0dcce1ea41d85527d5de9985..0f019fdd5d6318f3e94d64af51cd6a337c5648be 100644
--- a/chrome/browser/android/vr_shell/ui_scene_manager.cc
+++ b/chrome/browser/android/vr_shell/ui_scene_manager.cc
@@ -115,18 +115,18 @@ void UiSceneManager::CreateSystemIndicators() {
// TODO(acondor): Make constants for sizes and positions once the UX for the
// indicators is defined.
- element = base::MakeUnique<AudioCaptureIndicator>(256);
+ element = base::MakeUnique<AudioCaptureIndicator>(512);
element->set_id(AllocateId());
element->set_translation({-0.3, 0.8, -1.9});
- element->set_size({0.4, 0, 1});
+ element->set_size({0.5, 0, 1});
element->set_visible(false);
audio_input_indicator_ = element.get();
scene_->AddUiElement(std::move(element));
- element = base::MakeUnique<VideoCaptureIndicator>(256);
+ element = base::MakeUnique<VideoCaptureIndicator>(512);
element->set_id(AllocateId());
element->set_translation({0.3, 0.8, -1.9});
- element->set_size({0.4, 0, 1});
+ element->set_size({0.5, 0, 1});
element->set_visible(false);
video_input_indicator_ = element.get();
scene_->AddUiElement(std::move(element));

Powered by Google App Engine
This is Rietveld 408576698