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

Issue 2001009: Created a new process type called the service process to host background task... (Closed)

Created:
10 years, 7 months ago by sanjeevr
Modified:
9 years, 7 months ago
CC:
chromium-reviews, pam+watch_chromium.org, John Grabowski, cbentzel+watch_chromium.org, darin-cc_chromium.org
Visibility:
Public.

Description

Created a new process type called the service process to host background tasks such as the Cloud Print Proxy. BUG=None. TEST=None. Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=47055

Patch Set 1 #

Patch Set 2 : Fixed lint errors #

Patch Set 3 : Fixed Mac compile error #

Total comments: 30

Patch Set 4 : '' #

Total comments: 4

Patch Set 5 : '' #

Patch Set 6 : '' #

Unified diffs Side-by-side diffs Delta from patch set Stats (+560 lines, -3 lines) Patch
M chrome/app/chrome_dll_main.cc View 1 2 3 5 chunks +14 lines, -2 lines 0 comments Download
M chrome/app/dummy_main_functions.cc View 1 2 3 1 chunk +4 lines, -0 lines 0 comments Download
M chrome/chrome.gyp View 1 2 3 2 chunks +30 lines, -0 lines 0 comments Download
M chrome/common/chrome_switches.h View 1 2 3 3 chunks +4 lines, -0 lines 0 comments Download
M chrome/common/chrome_switches.cc View 1 2 3 3 chunks +16 lines, -0 lines 0 comments Download
M chrome/common/sandbox_init_wrapper_mac.cc View 1 2 3 1 chunk +2 lines, -1 line 0 comments Download
A chrome/service/cloud_print/cloud_print_proxy.h View 1 2 3 1 chunk +43 lines, -0 lines 0 comments Download
A chrome/service/cloud_print/cloud_print_proxy.cc View 1 chunk +32 lines, -0 lines 0 comments Download
A chrome/service/gaia/service_gaia_authenticator.h View 1 2 3 4 1 chunk +57 lines, -0 lines 0 comments Download
A chrome/service/gaia/service_gaia_authenticator.cc View 1 2 3 4 5 1 chunk +86 lines, -0 lines 0 comments Download
A chrome/service/net/service_url_request_context.h View 1 2 3 1 chunk +78 lines, -0 lines 0 comments Download
A chrome/service/net/service_url_request_context.cc View 1 2 3 1 chunk +55 lines, -0 lines 0 comments Download
A chrome/service/service_main.cc View 1 2 1 chunk +34 lines, -0 lines 0 comments Download
A chrome/service/service_process.h View 1 chunk +57 lines, -0 lines 0 comments Download
A chrome/service/service_process.cc View 1 chunk +48 lines, -0 lines 0 comments Download

Messages

Total messages: 12 (0 generated)
sanjeevr
10 years, 7 months ago (2010-05-10 18:04:56 UTC) #1
sanjeevr
Ping.
10 years, 7 months ago (2010-05-11 17:36:50 UTC) #2
darin (slow to review)
http://codereview.chromium.org/2001009/diff/26001/1018 File chrome/app/dummy_main_functions.cc (right): http://codereview.chromium.org/2001009/diff/26001/1018#newcode49 chrome/app/dummy_main_functions.cc:49: nit: no extra new line here http://codereview.chromium.org/2001009/diff/26001/1020 File chrome/common/chrome_switches.cc ...
10 years, 7 months ago (2010-05-11 21:32:09 UTC) #3
darin (slow to review)
LGTM http://codereview.chromium.org/2001009/diff/26001/1027 File chrome/service/net/service_url_request_context.cc (right): http://codereview.chromium.org/2001009/diff/26001/1027#newcode33 chrome/service/net/service_url_request_context.cc:33: net::HttpNetworkLayer::CreateFactory(NULL, host_resolver_, nit: indent by 4 or move ...
10 years, 7 months ago (2010-05-11 22:16:25 UTC) #4
darin (slow to review)
On 2010/05/11 22:16:25, darin wrote: > LGTM ^^^ whoops, i meant: no further comments. i'd ...
10 years, 7 months ago (2010-05-11 22:17:09 UTC) #5
sanjeevr
Made all the changes, please take another look. http://codereview.chromium.org/2001009/diff/26001/1018 File chrome/app/dummy_main_functions.cc (right): http://codereview.chromium.org/2001009/diff/26001/1018#newcode49 chrome/app/dummy_main_functions.cc:49: On ...
10 years, 7 months ago (2010-05-11 23:25:55 UTC) #6
darin (slow to review)
http://codereview.chromium.org/2001009/diff/26001/1025 File chrome/service/gaia/service_gaia_authenticator.cc (right): http://codereview.chromium.org/2001009/diff/26001/1025#newcode37 chrome/service/gaia/service_gaia_authenticator.cc:37: GURL post_url = temp.ReplaceComponents(replacements); > > GURL post_url("https://" + ...
10 years, 7 months ago (2010-05-12 05:03:47 UTC) #7
darin (slow to review)
http://codereview.chromium.org/2001009/diff/36001/37009 File chrome/service/gaia/service_gaia_authenticator.cc (right): http://codereview.chromium.org/2001009/diff/36001/37009#newcode84 chrome/service/gaia/service_gaia_authenticator.cc:84: MessageLoop::current()->DeleteSoon(FROM_HERE, source); are you sure this is necessary? i ...
10 years, 7 months ago (2010-05-12 05:10:51 UTC) #8
brettw
http://codereview.chromium.org/2001009/diff/26001/1025 File chrome/service/gaia/service_gaia_authenticator.cc (right): http://codereview.chromium.org/2001009/diff/26001/1025#newcode37 chrome/service/gaia/service_gaia_authenticator.cc:37: GURL post_url = temp.ReplaceComponents(replacements); I try to discourage building ...
10 years, 7 months ago (2010-05-12 05:11:39 UTC) #9
sanjeevr
This was code copied from BridgedGaiaAuthenticator in syncapi.cc, I did not pay too much attention ...
10 years, 7 months ago (2010-05-12 17:03:59 UTC) #10
sanjeevr
Please take another look. http://codereview.chromium.org/2001009/diff/26001/1025 File chrome/service/gaia/service_gaia_authenticator.cc (right): http://codereview.chromium.org/2001009/diff/26001/1025#newcode37 chrome/service/gaia/service_gaia_authenticator.cc:37: GURL post_url = temp.ReplaceComponents(replacements); On ...
10 years, 7 months ago (2010-05-12 17:45:35 UTC) #11
darin (slow to review)
10 years, 7 months ago (2010-05-12 18:03:06 UTC) #12
LGTM

Powered by Google App Engine
This is Rietveld 408576698