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

Issue 2250863003: exo: Run exo in mus+ash (Closed)

Created:
4 years, 4 months ago by Peng
Modified:
4 years, 4 months ago
Reviewers:
reveman, sky
CC:
chromium-reviews
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

exo: Run exo in mus+ash Add WMHelperAsh and WMHelperMus. They are for accessing WM related features in ash and mus+ash, and exo will create one of those two helpers based on the WM environment. Know issue: All methods of WMHelperMus are not implemented, so the exo doesn't response to any events. BUG=637914 TEST=manually with https://github.com/phuang/waylandcxx Committed: https://crrev.com/608523d443e9a619abb5f8da7ed2dd7e08ba3f3c Cr-Commit-Position: refs/heads/master@{#412861}

Patch Set 1 #

Patch Set 2 : Update #

Patch Set 3 : Update #

Total comments: 2

Patch Set 4 : Fix review issues #

Total comments: 10

Patch Set 5 : Update #

Total comments: 2

Patch Set 6 : Fix review issue. #

Patch Set 7 : Fix build errors #

Patch Set 8 : Fix build error #

Patch Set 9 : Fix build errors #

Unified diffs Side-by-side diffs Delta from patch set Stats (+375 lines, -145 lines) Patch
M chrome/browser/chrome_browser_main_extra_parts_exo.h View 1 2 3 2 chunks +2 lines, -0 lines 0 comments Download
M chrome/browser/chrome_browser_main_extra_parts_exo.cc View 1 2 3 4 5 6 7 8 2 chunks +20 lines, -10 lines 0 comments Download
M components/exo/BUILD.gn View 1 2 3 4 5 6 7 2 chunks +5 lines, -0 lines 0 comments Download
M components/exo/test/exo_test_base.h View 1 2 3 4 5 6 2 chunks +3 lines, -0 lines 0 comments Download
M components/exo/test/exo_test_base.cc View 1 2 3 4 5 6 2 chunks +6 lines, -0 lines 0 comments Download
M components/exo/wm_helper.h View 1 2 3 3 chunks +27 lines, -51 lines 0 comments Download
M components/exo/wm_helper.cc View 1 2 3 4 5 chunks +20 lines, -84 lines 0 comments Download
A components/exo/wm_helper_ash.h View 1 2 3 4 1 chunk +64 lines, -0 lines 0 comments Download
A components/exo/wm_helper_ash.cc View 1 2 3 4 5 6 1 chunk +119 lines, -0 lines 0 comments Download
A components/exo/wm_helper_mus.h View 1 2 3 4 1 chunk +38 lines, -0 lines 0 comments Download
A components/exo/wm_helper_mus.cc View 1 chunk +71 lines, -0 lines 0 comments Download

Messages

Total messages: 49 (33 generated)
Peng
Hi David, Could you please take a look? Thanks.
4 years, 4 months ago (2016-08-17 15:43:16 UTC) #4
reveman
https://codereview.chromium.org/2250863003/diff/40001/components/exo/wm_helper.cc File components/exo/wm_helper.cc (right): https://codereview.chromium.org/2250863003/diff/40001/components/exo/wm_helper.cc#newcode30 components/exo/wm_helper.cc:30: std::unique_ptr<WMHelper> WMHelper::Create(bool using_mus) { Can we add a "void ...
4 years, 4 months ago (2016-08-17 20:01:41 UTC) #6
Peng
https://codereview.chromium.org/2250863003/diff/40001/components/exo/wm_helper.cc File components/exo/wm_helper.cc (right): https://codereview.chromium.org/2250863003/diff/40001/components/exo/wm_helper.cc#newcode30 components/exo/wm_helper.cc:30: std::unique_ptr<WMHelper> WMHelper::Create(bool using_mus) { On 2016/08/17 20:01:41, reveman wrote: ...
4 years, 4 months ago (2016-08-17 20:25:36 UTC) #7
reveman
lgtm with nits https://codereview.chromium.org/2250863003/diff/60001/components/exo/display.cc File components/exo/display.cc (right): https://codereview.chromium.org/2250863003/diff/60001/components/exo/display.cc#newcode21 components/exo/display.cc:21: #include "components/exo/wm_helper.h" nit: remove if not ...
4 years, 4 months ago (2016-08-17 21:10:06 UTC) #10
Peng
+sky@ for chrome/* Hi Scott, PTAL. Thanks.
4 years, 4 months ago (2016-08-17 21:17:18 UTC) #14
Peng
https://codereview.chromium.org/2250863003/diff/60001/components/exo/display.cc File components/exo/display.cc (right): https://codereview.chromium.org/2250863003/diff/60001/components/exo/display.cc#newcode21 components/exo/display.cc:21: #include "components/exo/wm_helper.h" On 2016/08/17 21:10:05, reveman wrote: > nit: ...
4 years, 4 months ago (2016-08-17 21:29:59 UTC) #16
sky
https://codereview.chromium.org/2250863003/diff/80001/chrome/browser/chrome_browser_main_extra_parts_exo.cc File chrome/browser/chrome_browser_main_extra_parts_exo.cc (right): https://codereview.chromium.org/2250863003/diff/80001/chrome/browser/chrome_browser_main_extra_parts_exo.cc#newcode126 chrome/browser/chrome_browser_main_extra_parts_exo.cc:126: const bool using_mus = !chrome::ShouldOpenAshOnStartup(); Can you use IsRunningInMash()? ...
4 years, 4 months ago (2016-08-17 23:30:40 UTC) #20
Peng
https://codereview.chromium.org/2250863003/diff/80001/chrome/browser/chrome_browser_main_extra_parts_exo.cc File chrome/browser/chrome_browser_main_extra_parts_exo.cc (right): https://codereview.chromium.org/2250863003/diff/80001/chrome/browser/chrome_browser_main_extra_parts_exo.cc#newcode126 chrome/browser/chrome_browser_main_extra_parts_exo.cc:126: const bool using_mus = !chrome::ShouldOpenAshOnStartup(); On 2016/08/17 23:30:40, sky ...
4 years, 4 months ago (2016-08-18 00:02:44 UTC) #21
sky
LGTM
4 years, 4 months ago (2016-08-18 00:08:03 UTC) #24
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/2250863003/100001
4 years, 4 months ago (2016-08-18 00:30:43 UTC) #28
commit-bot: I haz the power
Try jobs failed on following builders: linux_chromium_chromeos_rel_ng on master.tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_chromeos_rel_ng/builds/263120)
4 years, 4 months ago (2016-08-18 01:21:06 UTC) #30
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/2250863003/100001
4 years, 4 months ago (2016-08-18 01:42:39 UTC) #32
commit-bot: I haz the power
Try jobs failed on following builders: linux_chromium_chromeos_ozone_rel_ng on master.tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_chromeos_ozone_rel_ng/builds/220362)
4 years, 4 months ago (2016-08-18 02:08:51 UTC) #34
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/2250863003/160001
4 years, 4 months ago (2016-08-18 15:38:35 UTC) #45
commit-bot: I haz the power
Committed patchset #9 (id:160001)
4 years, 4 months ago (2016-08-18 17:05:47 UTC) #47
commit-bot: I haz the power
4 years, 4 months ago (2016-08-18 17:10:20 UTC) #49
Message was sent while issue was closed.
Patchset 9 (id:??) landed as
https://crrev.com/608523d443e9a619abb5f8da7ed2dd7e08ba3f3c
Cr-Commit-Position: refs/heads/master@{#412861}

Powered by Google App Engine
This is Rietveld 408576698