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

Issue 187183002: Add creation of ServiceManager to Content (Closed)

Created:
6 years, 9 months ago by DaveMoore
Modified:
6 years, 9 months ago
Reviewers:
jam, sky
CC:
chromium-reviews, viettrungluu+watch_chromium.org, abarth-chromium, joi+watch-content_chromium.org, Aaron Boodman, darin-cc_chromium.org, darin (slow to review), ben+mojo_chromium.org
Visibility:
Public.

Description

Patch Set 1 #

Patch Set 2 : Special case browser process #

Patch Set 3 : Clean up existing tab in file #

Patch Set 4 : Merge mojo initializations #

Patch Set 5 : Cleanup #

Patch Set 6 : Merge problem w/ mojo_public.gypi #

Patch Set 7 : Add missing file #

Patch Set 8 : Check USE_MOJO for Windows bots #

Total comments: 8

Patch Set 9 : Add more use_mojo protects #

Patch Set 10 : Remove extraneous export #

Patch Set 11 : Move mojo_init to content/app #

Patch Set 12 : Move mojo_init to content/app #

Patch Set 13 : Merge problem #

Unified diffs Side-by-side diffs Delta from patch set Stats (+211 lines, -44 lines) Patch
M content/DEPS View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M content/app/content_main_runner.cc View 1 2 3 4 5 6 7 8 9 10 3 chunks +10 lines, -1 line 0 comments Download
A content/app/mojo/mojo_browsertest.cc View 1 2 3 4 5 6 7 8 9 10 1 chunk +29 lines, -0 lines 0 comments Download
A content/app/mojo/mojo_init.h View 1 2 3 4 5 6 7 8 9 10 1 chunk +15 lines, -0 lines 0 comments Download
A content/app/mojo/mojo_init.cc View 1 2 3 4 5 6 7 8 9 10 1 chunk +34 lines, -0 lines 0 comments Download
M content/common/mojo/mojo_channel_init.cc View 1 2 3 2 chunks +0 lines, -23 lines 0 comments Download
M content/content_app.gypi View 1 2 3 4 5 6 7 8 9 10 11 2 chunks +15 lines, -0 lines 0 comments Download
M content/content_common.gypi View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +1 line, -1 line 0 comments Download
M content/content_tests.gypi View 1 2 3 4 5 6 7 8 9 10 11 12 2 chunks +11 lines, -0 lines 0 comments Download
M mojo/gles2/command_buffer_client_impl.cc View 1 2 3 4 5 6 7 8 9 10 1 chunk +1 line, -1 line 0 comments Download
M mojo/mojo.gyp View 1 2 3 4 5 6 7 8 9 10 11 12 4 chunks +11 lines, -3 lines 0 comments Download
M mojo/mojo_examples.gypi View 1 2 3 4 5 chunks +6 lines, -5 lines 0 comments Download
M mojo/mojo_public.gypi View 1 2 3 4 5 2 chunks +16 lines, -5 lines 0 comments Download
M mojo/mojo_services.gypi View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M mojo/service_manager/service_loader.h View 1 2 chunks +2 lines, -1 line 0 comments Download
M mojo/service_manager/service_manager.h View 1 2 3 4 5 6 7 8 9 1 chunk +12 lines, -2 lines 0 comments Download
M mojo/service_manager/service_manager.cc View 1 2 3 4 chunks +14 lines, -1 line 0 comments Download
A mojo/service_manager/service_manager_export.h View 1 2 3 4 5 6 7 8 1 chunk +32 lines, -0 lines 0 comments Download

Messages

Total messages: 20 (0 generated)
DaveMoore
Clean up existing tab in file
6 years, 9 months ago (2014-03-06 23:32:11 UTC) #1
jam
btw now ContentMain's initialization code runs in the browser process during browser_tests, after r257597
6 years, 9 months ago (2014-03-19 00:16:48 UTC) #2
DaveMoore
Merge mojo initializations
6 years, 9 months ago (2014-03-19 21:17:03 UTC) #3
DaveMoore
Cleanup
6 years, 9 months ago (2014-03-19 21:23:33 UTC) #4
DaveMoore
6 years, 9 months ago (2014-03-19 21:24:27 UTC) #5
DaveMoore
Merge problem w/ mojo_public.gypi
6 years, 9 months ago (2014-03-19 21:34:04 UTC) #6
DaveMoore
Add missing file
6 years, 9 months ago (2014-03-19 21:43:00 UTC) #7
DaveMoore
Check USE_MOJO for Windows bots
6 years, 9 months ago (2014-03-19 23:04:33 UTC) #8
sky
https://codereview.chromium.org/187183002/diff/140001/content/common/mojo/mojo_browsertest.cc File content/common/mojo/mojo_browsertest.cc (right): https://codereview.chromium.org/187183002/diff/140001/content/common/mojo/mojo_browsertest.cc#newcode1 content/common/mojo/mojo_browsertest.cc:1: // Copyright (c) 2014 The Chromium Authors. All rights ...
6 years, 9 months ago (2014-03-19 23:48:28 UTC) #9
DaveMoore
Add more use_mojo protects
6 years, 9 months ago (2014-03-20 00:04:07 UTC) #10
DaveMoore
https://codereview.chromium.org/187183002/diff/140001/content/common/mojo/mojo_browsertest.cc File content/common/mojo/mojo_browsertest.cc (right): https://codereview.chromium.org/187183002/diff/140001/content/common/mojo/mojo_browsertest.cc#newcode1 content/common/mojo/mojo_browsertest.cc:1: // Copyright (c) 2014 The Chromium Authors. All rights ...
6 years, 9 months ago (2014-03-20 00:04:25 UTC) #11
sky
LGTM
6 years, 9 months ago (2014-03-20 02:20:14 UTC) #12
DaveMoore
Remove extraneous export
6 years, 9 months ago (2014-03-20 14:26:56 UTC) #13
jam
the new code in content/common should go into content/app/mojo. the reasoning is that content/common is ...
6 years, 9 months ago (2014-03-20 17:06:54 UTC) #14
DaveMoore
Move mojo_init to content/app
6 years, 9 months ago (2014-03-20 19:34:32 UTC) #15
DaveMoore
Move mojo_init to content/app
6 years, 9 months ago (2014-03-20 21:33:17 UTC) #16
DaveMoore
Committed patchset #12 manually as r258438 (presubmit successful).
6 years, 9 months ago (2014-03-20 22:26:31 UTC) #17
DaveMoore
Merge problem
6 years, 9 months ago (2014-03-21 16:44:24 UTC) #18
DaveMoore
Committed patchset #13 manually as r258607 (presubmit successful).
6 years, 9 months ago (2014-03-21 16:44:45 UTC) #19
vandebo (ex-Chrome)
6 years, 9 months ago (2014-03-21 17:49:02 UTC) #20
Message was sent while issue was closed.
A revert of this CL has been created in
https://codereview.chromium.org/208223006/ by vandebo@chromium.org.

The reason for reverting is: Tests fail on Mac.

Powered by Google App Engine
This is Rietveld 408576698