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

Issue 483363003: [Athena] Add status icons and system time to the desktop background (Closed)

Created:
6 years, 4 months ago by pkotwicz
Modified:
6 years, 3 months ago
Reviewers:
sadrul, oshima
CC:
chromium-reviews
Project:
chromium
Visibility:
Public.

Description

[Athena] Add status icons and system time to the desktop background BUG=404156 TEST=Manual, see bug TBR=sadrul, oshima (TBRing because of DEPS file modifications) Committed: https://crrev.com/73bd924d3996da6e1992b095e3eca90e29c0a10d Cr-Commit-Position: refs/heads/master@{#292895}

Patch Set 1 : #

Total comments: 6

Patch Set 2 : #

Patch Set 3 : #

Total comments: 3

Patch Set 4 : #

Patch Set 5 : #

Patch Set 6 : Fix tests #

Patch Set 7 : #

Unified diffs Side-by-side diffs Delta from patch set Stats (+537 lines, -1111 lines) Patch
M athena/athena.gyp View 1 2 3 4 5 6 2 chunks +13 lines, -3 lines 0 comments Download
M athena/common/container_priorities.h View 1 1 chunk +1 line, -1 line 0 comments Download
M athena/main/athena_launcher.cc View 1 2 3 4 chunks +2 lines, -4 lines 0 comments Download
M athena/main/athena_main.gyp View 1 2 3 4 5 6 2 chunks +0 lines, -8 lines 0 comments Download
D athena/main/debug/DEPS View 1 chunk +0 lines, -9 lines 0 comments Download
D athena/main/debug/debug_window.h View 1 chunk +0 lines, -10 lines 0 comments Download
D athena/main/debug/debug_window.cc View 1 chunk +0 lines, -346 lines 0 comments Download
D athena/main/debug/network_selector.h View 1 chunk +0 lines, -18 lines 0 comments Download
D athena/main/debug/network_selector.cc View 1 chunk +0 lines, -469 lines 0 comments Download
M athena/main/placeholder.cc View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M athena/screen/DEPS View 1 2 1 chunk +0 lines, -8 lines 0 comments Download
M athena/screen/background_controller.h View 1 2 1 chunk +0 lines, -36 lines 0 comments Download
M athena/screen/background_controller.cc View 1 2 1 chunk +0 lines, -110 lines 0 comments Download
M athena/screen/public/screen_manager.h View 1 2 3 2 chunks +0 lines, -8 lines 0 comments Download
M athena/screen/screen_manager_impl.cc View 1 2 3 5 chunks +1 line, -17 lines 0 comments Download
M athena/system/DEPS View 1 2 1 chunk +9 lines, -1 line 0 comments Download
A + athena/system/background_controller.h View 1 2 3 chunks +6 lines, -5 lines 0 comments Download
A + athena/system/background_controller.cc View 1 2 3 chunks +27 lines, -45 lines 0 comments Download
A + athena/system/network_selector.h View 1 chunk +5 lines, -5 lines 0 comments Download
A + athena/system/network_selector.cc View 2 chunks +3 lines, -3 lines 0 comments Download
M athena/system/public/system_ui.h View 1 2 1 chunk +18 lines, -0 lines 0 comments Download
A athena/system/status_icon_container_view.h View 1 1 chunk +47 lines, -0 lines 0 comments Download
A athena/system/status_icon_container_view.cc View 1 2 3 1 chunk +242 lines, -0 lines 0 comments Download
M athena/system/system_ui_impl.cc View 1 2 3 4 5 4 chunks +53 lines, -2 lines 0 comments Download
A athena/system/time_view.h View 1 1 chunk +35 lines, -0 lines 0 comments Download
A athena/system/time_view.cc View 1 1 chunk +69 lines, -0 lines 0 comments Download
M athena/test/DEPS View 1 2 3 4 5 1 chunk +1 line, -1 line 0 comments Download
M athena/test/athena_test_helper.cc View 1 2 3 4 5 3 chunks +3 lines, -0 lines 0 comments Download

Messages

Total messages: 33 (7 generated)
pkotwicz
Sadrul, can you please take another look? As with the previous CL you looked at ...
6 years, 4 months ago (2014-08-19 20:45:07 UTC) #1
pkotwicz
Introducing an "always on top" container and parenting windows to it based on the views::Widget::InitParams::keep_on_top ...
6 years, 4 months ago (2014-08-19 20:51:19 UTC) #2
pkotwicz
Ping?
6 years, 4 months ago (2014-08-21 14:54:18 UTC) #3
sadrul
LGTM https://codereview.chromium.org/483363003/diff/20001/athena/common/container_priorities.h File athena/common/container_priorities.h (right): https://codereview.chromium.org/483363003/diff/20001/athena/common/container_priorities.h#newcode14 athena/common/container_priorities.h:14: CP_POPUP, Maybe SYSTEM_MODAL instead. https://codereview.chromium.org/483363003/diff/20001/athena/system/status_icon_container_view.cc File athena/system/status_icon_container_view.cc (left): ...
6 years, 4 months ago (2014-08-21 18:44:30 UTC) #4
pkotwicz
Oshima for OWNERS https://codereview.chromium.org/483363003/diff/20001/athena/system/status_icon_container_view.cc File athena/system/status_icon_container_view.cc (left): https://codereview.chromium.org/483363003/diff/20001/athena/system/status_icon_container_view.cc#oldcode140 athena/system/status_icon_container_view.cc:140: closure_.Run(); Yes I checked
6 years, 4 months ago (2014-08-21 21:57:16 UTC) #5
oshima
can you move background code to system, instead of making screen depend on system? I ...
6 years, 4 months ago (2014-08-21 23:08:50 UTC) #6
pkotwicz
Moved BackgroundController into athena/system. Oshima, can you please take another look?
6 years, 4 months ago (2014-08-22 00:37:19 UTC) #7
oshima
https://codereview.chromium.org/483363003/diff/160001/athena/system/background_controller.cc File athena/system/background_controller.cc (right): https://codereview.chromium.org/483363003/diff/160001/athena/system/background_controller.cc#newcode20 athena/system/background_controller.cc:20: : time_view_(SystemUI::Get()->CreateTimeView()), Since you're in the same module, you ...
6 years, 4 months ago (2014-08-22 14:12:09 UTC) #8
pkotwicz
https://codereview.chromium.org/483363003/diff/160001/athena/system/background_controller.cc File athena/system/background_controller.cc (right): https://codereview.chromium.org/483363003/diff/160001/athena/system/background_controller.cc#newcode20 athena/system/background_controller.cc:20: : time_view_(SystemUI::Get()->CreateTimeView()), SystemUI::CreateTimeView() and SystemUI::CreateStateIconView() will be needed in ...
6 years, 4 months ago (2014-08-22 14:18:06 UTC) #9
oshima
https://codereview.chromium.org/483363003/diff/160001/athena/system/background_controller.cc File athena/system/background_controller.cc (right): https://codereview.chromium.org/483363003/diff/160001/athena/system/background_controller.cc#newcode20 athena/system/background_controller.cc:20: : time_view_(SystemUI::Get()->CreateTimeView()), On 2014/08/22 14:18:06, pkotwicz wrote: > SystemUI::CreateTimeView() ...
6 years, 4 months ago (2014-08-22 16:33:55 UTC) #10
pkotwicz
According to the mocks we will have the same UI on both the background and ...
6 years, 4 months ago (2014-08-22 16:52:32 UTC) #11
oshima
got it, thanks. lgtm
6 years, 4 months ago (2014-08-22 17:13:13 UTC) #12
pkotwicz
The CQ bit was checked by pkotwicz@chromium.org
6 years, 3 months ago (2014-08-29 14:09:47 UTC) #13
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/pkotwicz@chromium.org/483363003/180001
6 years, 3 months ago (2014-08-29 14:10:26 UTC) #14
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). The failing builders are: linux_gpu on tryserver.chromium.gpu ...
6 years, 3 months ago (2014-08-29 14:21:55 UTC) #15
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 3 months ago (2014-08-29 14:23:20 UTC) #16
commit-bot: I haz the power
Try jobs failed on following builders: ios_rel_device on tryserver.chromium.mac (http://build.chromium.org/p/tryserver.chromium.mac/builders/ios_rel_device/builds/10386)
6 years, 3 months ago (2014-08-29 14:23:21 UTC) #17
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/pkotwicz@chromium.org/483363003/200001
6 years, 3 months ago (2014-08-29 17:04:07 UTC) #19
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/pkotwicz@chromium.org/483363003/200001
6 years, 3 months ago (2014-08-29 17:31:16 UTC) #22
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). The failing builders are: linux_chromium_chromeos_rel_swarming on tryserver.chromium.linux ...
6 years, 3 months ago (2014-08-29 18:16:24 UTC) #23
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/pkotwicz@chromium.org/483363003/220001
6 years, 3 months ago (2014-08-29 19:01:20 UTC) #26
commit-bot: I haz the power
Failed to apply patch for athena/main/athena_main.gyp: While running git apply --index -p1; error: patch failed: ...
6 years, 3 months ago (2014-08-29 22:02:53 UTC) #28
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/pkotwicz@chromium.org/483363003/240001
6 years, 3 months ago (2014-09-01 20:05:16 UTC) #30
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). The failing builders are: win_chromium_compile_dbg on tryserver.chromium.win ...
6 years, 3 months ago (2014-09-02 01:05:48 UTC) #31
commit-bot: I haz the power
Committed patchset #7 (id:240001) as 2c12460759b501e8732cdc43715eb155bee90d34
6 years, 3 months ago (2014-09-02 01:52:17 UTC) #32
commit-bot: I haz the power
6 years, 3 months ago (2014-09-10 03:17:37 UTC) #33
Message was sent while issue was closed.
Patchset 7 (id:??) landed as
https://crrev.com/73bd924d3996da6e1992b095e3eca90e29c0a10d
Cr-Commit-Position: refs/heads/master@{#292895}

Powered by Google App Engine
This is Rietveld 408576698