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

Issue 2890563003: VR: Update UiSceneManager with audio/video capturing flags (Closed)

Created:
3 years, 7 months ago by asimjour1
Modified:
3 years, 7 months ago
Reviewers:
acondor_, mthiesse, cjgrant
CC:
chromium-reviews, feature-vr-reviews_chromium.org
Target Ref:
refs/heads/master
Project:
chromium
Visibility:
Public.

Description

VR: Update UiSceneManager with audio/video capturing flags UiSceneManager is updated to receive the capturing flags and show the indicators accordingly. BUG=722836 Review-Url: https://codereview.chromium.org/2890563003 Cr-Commit-Position: refs/heads/master@{#472592} Committed: https://chromium.googlesource.com/chromium/src/+/60119e7d384db63360b0e6f4f50edb7dcebf57e5

Patch Set 1 #

Total comments: 9

Patch Set 2 : Use ui_ in VrShell #

Total comments: 8

Patch Set 3 : VR: Update UiSceneManager with audio/video capturing flags #

Patch Set 4 : rebase #

Unified diffs Side-by-side diffs Delta from patch set Stats (+52 lines, -39 lines) Patch
M chrome/browser/android/vr_shell/ui_interface.h View 1 1 chunk +3 lines, -0 lines 0 comments Download
M chrome/browser/android/vr_shell/ui_scene_manager.h View 1 2 2 chunks +5 lines, -3 lines 0 comments Download
M chrome/browser/android/vr_shell/ui_scene_manager.cc View 1 2 3 3 chunks +14 lines, -2 lines 0 comments Download
M chrome/browser/android/vr_shell/ui_scene_manager_unittest.cc View 1 2 1 chunk +3 lines, -0 lines 0 comments Download
M chrome/browser/android/vr_shell/vr_gl_thread.h View 1 1 chunk +3 lines, -0 lines 0 comments Download
M chrome/browser/android/vr_shell/vr_gl_thread.cc View 1 1 chunk +18 lines, -0 lines 0 comments Download
M chrome/browser/android/vr_shell/vr_shell.cc View 1 2 3 1 chunk +6 lines, -18 lines 0 comments Download
M chrome/browser/android/vr_shell/vr_shell_gl.h View 1 chunk +0 lines, -4 lines 0 comments Download
M chrome/browser/android/vr_shell/vr_shell_gl.cc View 1 2 3 1 chunk +0 lines, -12 lines 0 comments Download

Messages

Total messages: 21 (9 generated)
asimjour1
PTAL
3 years, 7 months ago (2017-05-16 18:56:30 UTC) #2
cjgrant
https://codereview.chromium.org/2890563003/diff/1/chrome/browser/android/vr_shell/ui_scene_manager.cc File chrome/browser/android/vr_shell/ui_scene_manager.cc (right): https://codereview.chromium.org/2890563003/diff/1/chrome/browser/android/vr_shell/ui_scene_manager.cc#newcode292 chrome/browser/android/vr_shell/ui_scene_manager.cc:292: audio_input_indicator_->set_visible(is_capturing); Should these members be called audio_capture_indicator, etc, to ...
3 years, 7 months ago (2017-05-16 19:09:28 UTC) #4
acondor_
https://codereview.chromium.org/2890563003/diff/1/chrome/browser/android/vr_shell/ui_scene_manager.cc File chrome/browser/android/vr_shell/ui_scene_manager.cc (right): https://codereview.chromium.org/2890563003/diff/1/chrome/browser/android/vr_shell/ui_scene_manager.cc#newcode292 chrome/browser/android/vr_shell/ui_scene_manager.cc:292: audio_input_indicator_->set_visible(is_capturing); On 2017/05/16 19:09:27, cjgrant wrote: > Should these ...
3 years, 7 months ago (2017-05-16 19:11:41 UTC) #6
asimjour1
https://codereview.chromium.org/2890563003/diff/1/chrome/browser/android/vr_shell/ui_scene_manager.cc File chrome/browser/android/vr_shell/ui_scene_manager.cc (right): https://codereview.chromium.org/2890563003/diff/1/chrome/browser/android/vr_shell/ui_scene_manager.cc#newcode292 chrome/browser/android/vr_shell/ui_scene_manager.cc:292: audio_input_indicator_->set_visible(is_capturing); On 2017/05/16 19:09:27, cjgrant wrote: > Should these ...
3 years, 7 months ago (2017-05-16 20:13:56 UTC) #7
cjgrant
https://codereview.chromium.org/2890563003/diff/20001/chrome/browser/android/vr_shell/ui_interface.h File chrome/browser/android/vr_shell/ui_interface.h (right): https://codereview.chromium.org/2890563003/diff/20001/chrome/browser/android/vr_shell/ui_interface.h#newcode35 chrome/browser/android/vr_shell/ui_interface.h:35: virtual void SetVideoCapturingIndicator(bool enabled) = 0; These need to ...
3 years, 7 months ago (2017-05-16 21:31:39 UTC) #8
amp
https://codereview.chromium.org/2890563003/diff/20001/chrome/browser/android/vr_shell/ui_scene_manager.cc File chrome/browser/android/vr_shell/ui_scene_manager.cc (right): https://codereview.chromium.org/2890563003/diff/20001/chrome/browser/android/vr_shell/ui_scene_manager.cc#newcode292 chrome/browser/android/vr_shell/ui_scene_manager.cc:292: audio_capture_indicator_->set_visible(enabled); On 2017/05/16 21:31:38, cjgrant wrote: > As of ...
3 years, 7 months ago (2017-05-16 22:24:44 UTC) #9
asimjour1
https://codereview.chromium.org/2890563003/diff/20001/chrome/browser/android/vr_shell/ui_interface.h File chrome/browser/android/vr_shell/ui_interface.h (right): https://codereview.chromium.org/2890563003/diff/20001/chrome/browser/android/vr_shell/ui_interface.h#newcode35 chrome/browser/android/vr_shell/ui_interface.h:35: virtual void SetVideoCapturingIndicator(bool enabled) = 0; On 2017/05/16 21:31:38, ...
3 years, 7 months ago (2017-05-17 14:42:20 UTC) #10
cjgrant
lgtm https://codereview.chromium.org/2890563003/diff/20001/chrome/browser/android/vr_shell/ui_scene_manager.cc File chrome/browser/android/vr_shell/ui_scene_manager.cc (right): https://codereview.chromium.org/2890563003/diff/20001/chrome/browser/android/vr_shell/ui_scene_manager.cc#newcode292 chrome/browser/android/vr_shell/ui_scene_manager.cc:292: audio_capture_indicator_->set_visible(enabled); On 2017/05/17 14:42:20, asimjour1 wrote: > On ...
3 years, 7 months ago (2017-05-17 14:57:31 UTC) #11
commit-bot: I haz the power
CQ is trying da patch. Follow status at: https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2890563003/40001
3 years, 7 months ago (2017-05-17 17:20:48 UTC) #13
commit-bot: I haz the power
Try jobs failed on following builders: android_clang_dbg_recipe on master.tryserver.chromium.android (JOB_FAILED, https://build.chromium.org/p/tryserver.chromium.android/builders/android_clang_dbg_recipe/builds/271160) android_compile_dbg on master.tryserver.chromium.android (JOB_FAILED, ...
3 years, 7 months ago (2017-05-17 17:26:52 UTC) #15
commit-bot: I haz the power
CQ is trying da patch. Follow status at: https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2890563003/60001
3 years, 7 months ago (2017-05-17 21:25:35 UTC) #18
commit-bot: I haz the power
3 years, 7 months ago (2017-05-17 22:38:16 UTC) #21
Message was sent while issue was closed.
Committed patchset #4 (id:60001) as
https://chromium.googlesource.com/chromium/src/+/60119e7d384db63360b0e6f4f50e...

Powered by Google App Engine
This is Rietveld 408576698