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

Issue 1412093006: components: Add Exosphere component. (Closed)

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

Description

components: Add Exosphere component. Exosphere is a set of display server classes for Chromium that can be used for building a display server on top of Ash, the Chrome Compositor and the GpuMemoryBuffer framework. The classes and interfaces are inspired by the Wayland protocol and reference implementation of a display server that uses the Wayland protocol and server library is provided in the wayland/ sub-directory. BUG=549781 TEST=components_unittests --gtest_filter=ServerTest.*:SurfaceTest.*:BufferTest.*:DisplayTest.*:ShellSurfaceTest.*:SharedMemoryTest.* Committed: https://crrev.com/b195f41daf755c80d31f964538b1159c81d58e70 Cr-Commit-Position: refs/heads/master@{#360672}

Patch Set 1 #

Patch Set 2 : rebase #

Patch Set 3 : ozone fixes #

Patch Set 4 : implement xdg-shell interface instead of the fullscreen interface #

Patch Set 5 : remove unused ShouldShowCloseButton #

Patch Set 6 : ozone fixes #

Patch Set 7 : frameless windows by default #

Patch Set 8 : gn build fix and include wl shell interface bindings #

Patch Set 9 : fix frame callback handling #

Patch Set 10 : fix handling of some null pointers #

Patch Set 11 : fix builds deps and add SetOpaqueRegion test #

Patch Set 12 : move unit tests to a new target #

Patch Set 13 : rebase on third_party wayland #

Patch Set 14 : remove some includes #

Patch Set 15 : avoid flush and cleanup event handling #

Patch Set 16 : rebase #

Patch Set 17 : run time flag instead of build time flag for wayland server #

Patch Set 18 : Add ShellSurface::SetTitle #

Total comments: 2

Patch Set 19 : some minor wl version cleanup #

Patch Set 20 : title fix #

Patch Set 21 : fix compositor observer issue #

Patch Set 22 : improve frame callback handling #

Patch Set 23 : add support for decorated windows #

Patch Set 24 : texture target fix #

Patch Set 25 : rebase #

Patch Set 26 : rebase #

Patch Set 27 : rebase on improved shared memory support #

Total comments: 2

Patch Set 28 : rebase #

Patch Set 29 : remove ash.gyp changes no longer needed #

Total comments: 1

Patch Set 30 : missing linux conditional #

Patch Set 31 : rebase #

Total comments: 13

Patch Set 32 : build fix and address code review feedback #

Patch Set 33 : rebase #

Patch Set 34 : build fixes #

Patch Set 35 : fix incorrect buffer release callback #

Patch Set 36 : fix flush and add enable_wayland_server config #

Total comments: 7

Patch Set 37 : fix build issues and remove wayland_bindings.h #

Total comments: 1

Patch Set 38 : another build fi #

Total comments: 4

Patch Set 39 : add ChromeBrowserMainExtraPartsExo #

Patch Set 40 : rebase #

Patch Set 41 : Minor show state fix and use SkRegion instead of cc::Region in preperation for input support where … #

Patch Set 42 : remove cc:Region usage #

Patch Set 43 : per-file exo.gypi=reveman@chromium.org to components/OWNERS #

Total comments: 2

Patch Set 44 : remove some ifdefs #

Unified diffs Side-by-side diffs Delta from patch set Stats (+2587 lines, -18 lines) Patch
M ash/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 1 chunk +4 lines, -0 lines 0 comments Download
M build/common.gypi View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 6 chunks +16 lines, -0 lines 0 comments Download
M build/config/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 1 chunk +3 lines, -0 lines 0 comments Download
M build/config/ui.gni View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 2 chunks +8 lines, -0 lines 0 comments Download
M chrome/browser/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 1 chunk +11 lines, -0 lines 0 comments Download
M chrome/browser/DEPS View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +1 line, -0 lines 0 comments Download
A chrome/browser/chrome_browser_main_extra_parts_exo.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 1 chunk +37 lines, -0 lines 0 comments Download
A chrome/browser/chrome_browser_main_extra_parts_exo.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 1 chunk +59 lines, -0 lines 0 comments Download
M chrome/browser/chrome_content_browser_client.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 2 chunks +8 lines, -0 lines 0 comments Download
M chrome/chrome_browser.gypi View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 1 chunk +10 lines, -0 lines 0 comments Download
M chrome/common/chrome_switches.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 1 chunk +4 lines, -0 lines 0 comments Download
M chrome/common/chrome_switches.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 1 chunk +5 lines, -0 lines 0 comments Download
M components/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 2 chunks +10 lines, -0 lines 0 comments Download
M components/OWNERS View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 1 chunk +2 lines, -0 lines 0 comments Download
M components/components.gyp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 1 chunk +6 lines, -1 line 0 comments Download
A components/exo.gypi View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 1 chunk +70 lines, -0 lines 0 comments Download
A components/exo/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 1 chunk +88 lines, -0 lines 0 comments Download
A + components/exo/DEPS View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 1 chunk +4 lines, -0 lines 0 comments Download
A + components/exo/OWNERS View 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 0 chunks +-1 lines, --1 lines 0 comments Download
A + components/exo/PRESUBMIT.py View 1 chunk +1 line, -1 line 0 comments Download
A components/exo/README View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +2 lines, -0 lines 0 comments Download
A components/exo/buffer.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 1 chunk +82 lines, -0 lines 0 comments Download
A components/exo/buffer.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 1 chunk +187 lines, -0 lines 0 comments Download
A components/exo/buffer_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 1 chunk +52 lines, -0 lines 0 comments Download
A components/exo/display.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 1 chunk +43 lines, -0 lines 0 comments Download
A components/exo/display.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 1 chunk +46 lines, -0 lines 0 comments Download
A components/exo/display_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 1 chunk +67 lines, -0 lines 0 comments Download
A components/exo/shared_memory.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 1 chunk +42 lines, -0 lines 0 comments Download
A components/exo/shared_memory.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 1 chunk +79 lines, -0 lines 0 comments Download
A components/exo/shared_memory_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 1 chunk +59 lines, -0 lines 0 comments Download
A components/exo/shell_surface.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 1 chunk +71 lines, -0 lines 0 comments Download
A components/exo/shell_surface.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 1 chunk +164 lines, -0 lines 0 comments Download
A components/exo/shell_surface_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 1 chunk +54 lines, -0 lines 0 comments Download
A components/exo/surface.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +112 lines, -0 lines 0 comments Download
A components/exo/surface.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 1 chunk +160 lines, -0 lines 0 comments Download
A components/exo/surface_delegate.h View 1 2 3 1 chunk +26 lines, -0 lines 0 comments Download
A components/exo/surface_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 1 chunk +105 lines, -0 lines 0 comments Download
A components/exo/test/exo_test_base.h View 1 chunk +36 lines, -0 lines 0 comments Download
A components/exo/test/exo_test_base.cc View 1 chunk +28 lines, -0 lines 0 comments Download
A components/exo/test/exo_test_helper.h View 1 chunk +36 lines, -0 lines 0 comments Download
A components/exo/test/exo_test_helper.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 1 chunk +31 lines, -0 lines 0 comments Download
A + components/exo/test/run_all_unittests.cc View 1 2 3 4 5 6 7 8 9 10 11 2 chunks +3 lines, -5 lines 0 comments Download
A + components/exo/wayland/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 1 chunk +14 lines, -12 lines 0 comments Download
A components/exo/wayland/DEPS View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +3 lines, -0 lines 0 comments Download
A components/exo/wayland/scoped_wl_types.h View 1 chunk +31 lines, -0 lines 0 comments Download
A components/exo/wayland/scoped_wl_types.cc View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +20 lines, -0 lines 0 comments Download
A components/exo/wayland/server.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 1 chunk +57 lines, -0 lines 0 comments Download
A components/exo/wayland/server.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 1 chunk +534 lines, -0 lines 0 comments Download
A components/exo/wayland/server_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +97 lines, -0 lines 0 comments Download

Messages

Total messages: 69 (26 generated)
reveman
5 years, 1 month ago (2015-11-04 02:13:15 UTC) #3
lpique
https://codereview.chromium.org/1412093006/diff/340001/components/exo/surface.cc File components/exo/surface.cc (right): https://codereview.chromium.org/1412093006/diff/340001/components/exo/surface.cc#newcode107 components/exo/surface.cc:107: if (frame_callbacks_.empty() && active_frame_callbacks_.empty()) Shouldn't you also check "&& ...
5 years, 1 month ago (2015-11-05 21:25:01 UTC) #4
lpique
LGTM, with one minor nit. Sorry for the delay. I had too many distractions. https://codereview.chromium.org/1412093006/diff/520001/components/exo/shared_memory.h ...
5 years, 1 month ago (2015-11-11 19:22:08 UTC) #6
reveman
thanks https://codereview.chromium.org/1412093006/diff/520001/components/exo/shared_memory.h File components/exo/shared_memory.h (right): https://codereview.chromium.org/1412093006/diff/520001/components/exo/shared_memory.h#newcode33 components/exo/shared_memory.h:33: int stride); On 2015/11/11 at 19:22:07, lpique wrote: ...
5 years, 1 month ago (2015-11-11 19:45:19 UTC) #7
reveman
piman, please take a look at this when you have a chance. https://codereview.chromium.org/1412093006/diff/560001/ash/BUILD.gn File ash/BUILD.gn ...
5 years, 1 month ago (2015-11-14 00:58:33 UTC) #9
piman
Comments so far, I only made it up to surface.cc, I still have to take ...
5 years, 1 month ago (2015-11-17 02:43:53 UTC) #10
reveman
https://codereview.chromium.org/1412093006/diff/600001/chrome/browser/ui/views/BUILD.gn File chrome/browser/ui/views/BUILD.gn (right): https://codereview.chromium.org/1412093006/diff/600001/chrome/browser/ui/views/BUILD.gn#newcode43 chrome/browser/ui/views/BUILD.gn:43: if (is_linux) { On 2015/11/17 at 02:43:53, piman (slow ...
5 years, 1 month ago (2015-11-17 18:04:04 UTC) #11
reveman
https://codereview.chromium.org/1412093006/diff/600001/chrome/browser/ui/views/BUILD.gn File chrome/browser/ui/views/BUILD.gn (right): https://codereview.chromium.org/1412093006/diff/600001/chrome/browser/ui/views/BUILD.gn#newcode43 chrome/browser/ui/views/BUILD.gn:43: if (is_linux) { On 2015/11/17 at 18:04:04, reveman wrote: ...
5 years, 1 month ago (2015-11-18 00:21:47 UTC) #12
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1412093006/700001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1412093006/700001
5 years, 1 month ago (2015-11-18 00:22:48 UTC) #14
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: chromium_presubmit on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/chromium_presubmit/builds/119575)
5 years, 1 month ago (2015-11-18 00:38:08 UTC) #16
piman
https://codereview.chromium.org/1412093006/diff/700001/components/exo/test/exo_test_helper.cc File components/exo/test/exo_test_helper.cc (right): https://codereview.chromium.org/1412093006/diff/700001/components/exo/test/exo_test_helper.cc#newcode28 components/exo/test/exo_test_helper.cc:28: .Pass(); nit: should not need Pass() https://codereview.chromium.org/1412093006/diff/700001/components/exo/wayland/server.cc File components/exo/wayland/server.cc ...
5 years, 1 month ago (2015-11-18 04:31:51 UTC) #17
piman
5 years, 1 month ago (2015-11-18 04:31:57 UTC) #18
reveman
ptal https://codereview.chromium.org/1412093006/diff/700001/components/exo/test/exo_test_helper.cc File components/exo/test/exo_test_helper.cc (right): https://codereview.chromium.org/1412093006/diff/700001/components/exo/test/exo_test_helper.cc#newcode28 components/exo/test/exo_test_helper.cc:28: .Pass(); On 2015/11/18 at 04:31:51, piman (slow to ...
5 years, 1 month ago (2015-11-18 06:48:36 UTC) #19
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1412093006/720001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1412093006/720001
5 years, 1 month ago (2015-11-18 06:49:16 UTC) #21
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: chromium_presubmit on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/chromium_presubmit/builds/119692) linux_chromium_chromeos_ozone_rel_ng on ...
5 years, 1 month ago (2015-11-18 06:53:58 UTC) #23
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1412093006/740001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1412093006/740001
5 years, 1 month ago (2015-11-18 07:20:37 UTC) #25
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: chromium_presubmit on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/chromium_presubmit/builds/119697)
5 years, 1 month ago (2015-11-18 07:29:11 UTC) #27
piman
lgtm lgtm https://codereview.chromium.org/1412093006/diff/700001/components/exo/wayland/server.cc File components/exo/wayland/server.cc (right): https://codereview.chromium.org/1412093006/diff/700001/components/exo/wayland/server.cc#newcode26 components/exo/wayland/server.cc:26: #include "components/exo/wayland/wayland_bindings.h" On 2015/11/18 06:48:36, reveman wrote: ...
5 years, 1 month ago (2015-11-18 17:35:12 UTC) #28
piman
lgtm https://codereview.chromium.org/1412093006/diff/700001/components/exo/wayland/server.cc File components/exo/wayland/server.cc (right): https://codereview.chromium.org/1412093006/diff/700001/components/exo/wayland/server.cc#newcode26 components/exo/wayland/server.cc:26: #include "components/exo/wayland/wayland_bindings.h" On 2015/11/18 06:48:36, reveman wrote: > ...
5 years, 1 month ago (2015-11-18 17:35:12 UTC) #29
reveman
+jochen for build/, components/BUILD.gn and components/*.gyp* +sky for chrome/browser/ui/ and ash/
5 years, 1 month ago (2015-11-18 18:05:14 UTC) #31
sky
https://codereview.chromium.org/1412093006/diff/740001/ash/BUILD.gn File ash/BUILD.gn (right): https://codereview.chromium.org/1412093006/diff/740001/ash/BUILD.gn#newcode201 ash/BUILD.gn:201: deps += [ "//ui/display" ] Is this specific to ...
5 years, 1 month ago (2015-11-18 21:01:22 UTC) #32
reveman
ptal https://codereview.chromium.org/1412093006/diff/740001/ash/BUILD.gn File ash/BUILD.gn (right): https://codereview.chromium.org/1412093006/diff/740001/ash/BUILD.gn#newcode201 ash/BUILD.gn:201: deps += [ "//ui/display" ] On 2015/11/18 at ...
5 years, 1 month ago (2015-11-18 23:55:18 UTC) #33
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1412093006/760001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1412093006/760001
5 years, 1 month ago (2015-11-18 23:57:47 UTC) #35
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: mac_chromium_compile_dbg_ng on tryserver.chromium.mac (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.mac/builders/mac_chromium_compile_dbg_ng/builds/125097) mac_chromium_gn_rel on ...
5 years, 1 month ago (2015-11-19 00:04:48 UTC) #37
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1412093006/780001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1412093006/780001
5 years, 1 month ago (2015-11-19 00:16:02 UTC) #39
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: chromium_presubmit on tryserver.chromium.linux (JOB_FAILED, no build URL)
5 years, 1 month ago (2015-11-19 01:40:25 UTC) #41
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1412093006/800001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1412093006/800001
5 years, 1 month ago (2015-11-19 06:22:20 UTC) #43
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: chromium_presubmit on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/chromium_presubmit/builds/120098)
5 years, 1 month ago (2015-11-19 06:33:17 UTC) #45
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1412093006/820001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1412093006/820001
5 years, 1 month ago (2015-11-19 06:35:43 UTC) #48
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: chromium_presubmit on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/chromium_presubmit/builds/120105)
5 years, 1 month ago (2015-11-19 06:43:50 UTC) #50
jochen (gone - plz use gerrit)
lgtm
5 years, 1 month ago (2015-11-19 08:59:25 UTC) #51
reveman
jochen@, sorry for not noticing this before asking for your review. I have a large ...
5 years, 1 month ago (2015-11-19 15:09:52 UTC) #52
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1412093006/840001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1412093006/840001
5 years, 1 month ago (2015-11-19 15:11:13 UTC) #54
jochen (gone - plz use gerrit)
On 2015/11/19 at 15:11:13, commit-bot wrote: > Dry run: CQ is trying da patch. Follow ...
5 years, 1 month ago (2015-11-19 15:12:55 UTC) #55
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: chromium_presubmit on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/chromium_presubmit/builds/120190)
5 years, 1 month ago (2015-11-19 15:20:07 UTC) #57
sky
https://codereview.chromium.org/1412093006/diff/840001/chrome/browser/chrome_browser_main_extra_parts_exo.h File chrome/browser/chrome_browser_main_extra_parts_exo.h (right): https://codereview.chromium.org/1412093006/diff/840001/chrome/browser/chrome_browser_main_extra_parts_exo.h#newcode14 chrome/browser/chrome_browser_main_extra_parts_exo.h:14: #if defined(ENABLE_WAYLAND_SERVER) Isn't this code only compiled if ENABLE_WAYLAND_SERVER ...
5 years, 1 month ago (2015-11-19 17:55:35 UTC) #58
reveman
https://codereview.chromium.org/1412093006/diff/840001/chrome/browser/chrome_browser_main_extra_parts_exo.h File chrome/browser/chrome_browser_main_extra_parts_exo.h (right): https://codereview.chromium.org/1412093006/diff/840001/chrome/browser/chrome_browser_main_extra_parts_exo.h#newcode14 chrome/browser/chrome_browser_main_extra_parts_exo.h:14: #if defined(ENABLE_WAYLAND_SERVER) On 2015/11/19 at 17:55:35, sky wrote: > ...
5 years, 1 month ago (2015-11-19 18:42:03 UTC) #59
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1412093006/860001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1412093006/860001
5 years, 1 month ago (2015-11-19 19:08:43 UTC) #61
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: chromium_presubmit on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/chromium_presubmit/builds/120299)
5 years, 1 month ago (2015-11-19 19:21:47 UTC) #63
sky
LGTM
5 years, 1 month ago (2015-11-19 20:27:56 UTC) #64
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1412093006/860001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1412093006/860001
5 years, 1 month ago (2015-11-19 20:31:08 UTC) #67
commit-bot: I haz the power
Committed patchset #44 (id:860001)
5 years, 1 month ago (2015-11-19 22:16:55 UTC) #68
commit-bot: I haz the power
5 years, 1 month ago (2015-11-19 22:17:42 UTC) #69
Message was sent while issue was closed.
Patchset 44 (id:??) landed as
https://crrev.com/b195f41daf755c80d31f964538b1159c81d58e70
Cr-Commit-Position: refs/heads/master@{#360672}

Powered by Google App Engine
This is Rietveld 408576698