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

Issue 10918279: Provide mutable members of UrlRequestContext via pure-virtual interface (Closed)

Created:
8 years, 3 months ago by pauljensen
Modified:
8 years, 1 month ago
CC:
chromium-reviews, cbentzel+watch_chromium.org, akalin, Raghu Simha, darin-cc_chromium.org, haitaol1, tim (not reviewing), willchan no longer on Chromium, boliu
Visibility:
Public.

Description

Provide mutable members of UrlRequestContext via pure-virtual interface. Create a pure-virtual interface called HttpUserAgentSettings that provides access to the Accept-Language, Accept-Charset, and User-Agent HTTP headers. Each UrlRequestContext should have a HttpUserAgentSettings implementation attached via set_http_user_agent_settings(). BUG=146596 Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=166425

Patch Set 1 : #

Total comments: 20

Patch Set 2 : Address erikwright's comments #

Patch Set 3 : Avoid inclusion #

Patch Set 4 : Avoid more inclusion #

Patch Set 5 : lint fixes #

Total comments: 18

Patch Set 6 : Address erikwright's second round of comments. #

Total comments: 9

Patch Set 7 : Fix indents #

Patch Set 8 : Change to returning strings by value #

Total comments: 23

Patch Set 9 : Address mmenke's second round of comments #

Patch Set 10 : Address most of willchan's comments #

Patch Set 11 : Cleanup #

Patch Set 12 : delint #

Patch Set 13 : sync #

Patch Set 14 : Rewrite ChromeHttpUserAgentSettings to use StringPrefMember #

Patch Set 15 : cleanup and make URLRequestHttpJob use HUAS directly #

Patch Set 16 : sync #

Patch Set 17 : Use net::HttpUtil::GenerateAccept*Header() #

Patch Set 18 : add TODO #

Total comments: 32

Patch Set 19 : sync #

Patch Set 20 : Address Erik and Will's comments #

Patch Set 21 : Cleanup #

Patch Set 22 : delint #

Patch Set 23 : const-ify HUAS getters #

Total comments: 10

Patch Set 24 : Address mmenke's comments #

Total comments: 2

Patch Set 25 : sync #

Patch Set 26 : sync #

Patch Set 27 : tiny fix #

Patch Set 28 : Fix a couple build issues #

Patch Set 29 : Remove extra blank line #

Patch Set 30 : sync #

Patch Set 31 : Disable test for chrome_frame_net_tests #

Unified diffs Side-by-side diffs Delta from patch set Stats (+581 lines, -351 lines) Patch
M android_webview/browser/net/aw_url_request_context_getter.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 2 chunks +7 lines, -9 lines 0 comments Download
M chrome/browser/automation/url_request_automation_job.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 3 chunks +10 lines, -6 lines 0 comments Download
M chrome/browser/automation/url_request_automation_job.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 4 chunks +17 lines, -6 lines 0 comments Download
M chrome/browser/io_thread.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 2 chunks +2 lines, -0 lines 0 comments Download
M chrome/browser/io_thread.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 7 chunks +10 lines, -20 lines 0 comments Download
A chrome/browser/net/basic_http_user_agent_settings.h 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 +36 lines, -0 lines 0 comments Download
A chrome/browser/net/basic_http_user_agent_settings.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 +29 lines, -0 lines 0 comments Download
A chrome/browser/net/chrome_http_user_agent_settings.h 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 +49 lines, -0 lines 0 comments Download
A chrome/browser/net/chrome_http_user_agent_settings.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 +67 lines, -0 lines 0 comments Download
M chrome/browser/net/chrome_url_request_context.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 5 chunks +4 lines, -38 lines 0 comments Download
M chrome/browser/net/chrome_url_request_context.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 11 chunks +3 lines, -93 lines 0 comments Download
M chrome/browser/policy/device_management_service.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 3 chunks +6 lines, -11 lines 0 comments Download
M chrome/browser/profiles/off_the_record_profile_io_data.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 1 chunk +0 lines, -13 lines 0 comments Download
M chrome/browser/profiles/profile_impl_io_data.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 2 chunks +0 lines, -23 lines 0 comments Download
M chrome/browser/profiles/profile_io_data.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 3 chunks +4 lines, -2 lines 0 comments Download
M chrome/browser/profiles/profile_io_data.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 5 chunks +7 lines, -9 lines 0 comments Download
M chrome/browser/safe_browsing/safe_browsing_service.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 2 chunks +3 lines, -18 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 1 chunk +4 lines, -0 lines 0 comments Download
M chrome/service/net/service_url_request_context.h View 1 chunk +0 lines, -4 lines 0 comments Download
M chrome/service/net/service_url_request_context.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 3 chunks +4 lines, -12 lines 0 comments Download
M chrome_frame/test/net/fake_external_tab.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 1 chunk +3 lines, -2 lines 0 comments Download
M chrome_frame/test/net/test_automation_provider.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 2 chunks +2 lines, -0 lines 0 comments Download
M content/browser/speech/google_one_shot_remote_engine.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 1 chunk +4 lines, -1 line 0 comments Download
M content/browser/speech/google_streaming_remote_engine.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 1 chunk +4 lines, -1 line 0 comments Download
M content/shell/shell_url_request_context_getter.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 3 chunks +5 lines, -2 lines 0 comments Download
M net/net.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 1 chunk +3 lines, -0 lines 0 comments Download
A net/url_request/http_user_agent_settings.h 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 +41 lines, -0 lines 0 comments Download
A net/url_request/static_http_user_agent_settings.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 1 chunk +43 lines, -0 lines 0 comments Download
A net/url_request/static_http_user_agent_settings.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 +34 lines, -0 lines 0 comments Download
M net/url_request/url_request_context.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 5 chunks +22 lines, -15 lines 0 comments Download
M net/url_request/url_request_context.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 4 chunks +16 lines, -4 lines 0 comments Download
M net/url_request/url_request_context_builder.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 2 chunks +11 lines, -2 lines 0 comments Download
M net/url_request/url_request_context_builder.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 5 chunks +4 lines, -11 lines 0 comments Download
M net/url_request/url_request_context_storage.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 3 chunks +4 lines, -0 lines 0 comments Download
M net/url_request/url_request_context_storage.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 2 chunks +7 lines, -0 lines 0 comments Download
M net/url_request/url_request_http_job.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 3 chunks +6 lines, -1 line 0 comments Download
M net/url_request/url_request_http_job.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 5 chunks +29 lines, -17 lines 0 comments Download
M net/url_request/url_request_test_util.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 2 chunks +6 lines, -4 lines 0 comments Download
M net/url_request/url_request_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 6 chunks +42 lines, -4 lines 0 comments Download
M sync/internal_api/http_bridge.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 4 chunks +8 lines, -10 lines 0 comments Download
M sync/internal_api/public/http_bridge.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 2 chunks +2 lines, -3 lines 0 comments Download
M webkit/tools/test_shell/test_shell_request_context.h View 1 chunk +0 lines, -2 lines 0 comments Download
M webkit/tools/test_shell/test_shell_request_context.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 4 chunks +23 lines, -8 lines 0 comments Download

Messages

Total messages: 54 (0 generated)
pauljensen
Hey Erik, Here's my refactor to access the mutable members of UrlRequestContext via a pure-virtual ...
8 years, 3 months ago (2012-09-20 21:04:40 UTC) #1
erikwright (departed)
Lots of small comments, but in general looking on track. Thanks! http://codereview.chromium.org/10918279/diff/22046/chrome/browser/net/basic_http_user_agent_settings.h File chrome/browser/net/basic_http_user_agent_settings.h (right): ...
8 years, 3 months ago (2012-09-21 15:06:33 UTC) #2
pauljensen
Erik, Thanks for all the comments! I think I addressed them all with the exception ...
8 years, 3 months ago (2012-09-24 20:21:15 UTC) #3
erikwright (departed)
http://codereview.chromium.org/10918279/diff/53001/chrome/browser/io_thread.cc File chrome/browser/io_thread.cc (right): http://codereview.chromium.org/10918279/diff/53001/chrome/browser/io_thread.cc#newcode39 chrome/browser/io_thread.cc:39: #include "content/public/common/content_client.h" no longer required? http://codereview.chromium.org/10918279/diff/53001/chrome/browser/io_thread.cc#newcode79 chrome/browser/io_thread.cc:79: // Used ...
8 years, 2 months ago (2012-09-25 21:06:38 UTC) #4
pauljensen
I addressed all of your second round comments either with the requested changes or responses ...
8 years, 2 months ago (2012-09-26 14:08:19 UTC) #5
erikwright (departed)
LGTM. mmenke, PTAL. pauljensen: Will has asked to be CC'd on all these CLs anyway. ...
8 years, 2 months ago (2012-09-26 14:19:36 UTC) #6
mmenke
I want to carefully go over this once more for correctness, but didn't notice anything ...
8 years, 2 months ago (2012-09-26 16:28:20 UTC) #7
pauljensen
I fixed the indents...sorry about that, I switched editors. I changed the HttpUserAgentSettings functions to ...
8 years, 2 months ago (2012-10-05 15:03:20 UTC) #8
mmenke
Just a couple small suggestions. http://codereview.chromium.org/10918279/diff/59001/chrome/browser/automation/url_request_automation_job.cc File chrome/browser/automation/url_request_automation_job.cc (right): http://codereview.chromium.org/10918279/diff/59001/chrome/browser/automation/url_request_automation_job.cc#newcode426 chrome/browser/automation/url_request_automation_job.cc:426: !request_->context()->GetAcceptLanguage().empty()) { Suggest you ...
8 years, 2 months ago (2012-10-05 20:08:51 UTC) #9
willchan no longer on Chromium
Anything that Erik/Matt says should have higher precedence over what I say here. So if ...
8 years, 2 months ago (2012-10-06 19:32:49 UTC) #10
mmenke
http://codereview.chromium.org/10918279/diff/59001/chrome/browser/automation/url_request_automation_job.cc File chrome/browser/automation/url_request_automation_job.cc (right): http://codereview.chromium.org/10918279/diff/59001/chrome/browser/automation/url_request_automation_job.cc#newcode423 chrome/browser/automation/url_request_automation_job.cc:423: // didn't have them specified. On 2012/10/06 19:32:49, willchan ...
8 years, 2 months ago (2012-10-08 15:06:30 UTC) #11
erikwright (departed)
This CL keeps getting better and better. I love seeing the amount of code that's ...
8 years, 2 months ago (2012-10-09 15:24:46 UTC) #12
willchan no longer on Chromium
http://codereview.chromium.org/10918279/diff/59001/chrome/browser/net/chrome_url_request_context.cc File chrome/browser/net/chrome_url_request_context.cc (right): http://codereview.chromium.org/10918279/diff/59001/chrome/browser/net/chrome_url_request_context.cc#newcode384 chrome/browser/net/chrome_url_request_context.cc:384: set_http_user_agent_settings(chrome_http_user_agent_settings_.get()); On 2012/10/09 15:24:46, erikwright wrote: > On 2012/10/06 ...
8 years, 2 months ago (2012-10-09 22:58:56 UTC) #13
pauljensen
I reworked ChromeHttpUserAgentSettings to avoid being RefCounted and got rid of all the notification logic ...
8 years, 2 months ago (2012-10-23 22:02:58 UTC) #14
willchan no longer on Chromium
http://codereview.chromium.org/10918279/diff/94002/chrome/browser/net/chrome_http_user_agent_settings.h File chrome/browser/net/chrome_http_user_agent_settings.h (right): http://codereview.chromium.org/10918279/diff/94002/chrome/browser/net/chrome_http_user_agent_settings.h#newcode24 chrome/browser/net/chrome_http_user_agent_settings.h:24: virtual ~ChromeHttpUserAgentSettings() {} Define it in the .cc please. ...
8 years, 2 months ago (2012-10-24 03:40:09 UTC) #15
erikwright (departed)
http://codereview.chromium.org/10918279/diff/94002/chrome/browser/io_thread.h File chrome/browser/io_thread.h (right): http://codereview.chromium.org/10918279/diff/94002/chrome/browser/io_thread.h#newcode119 chrome/browser/io_thread.h:119: scoped_ptr<BasicHttpUserAgentSettings> basic_http_user_agent_settings; Does this need to be the derived ...
8 years, 2 months ago (2012-10-24 13:14:33 UTC) #16
erikwright (departed)
On 2012/10/23 22:02:58, pauljensen wrote: > I reworked ChromeHttpUserAgentSettings to avoid being RefCounted and got ...
8 years, 2 months ago (2012-10-24 13:15:21 UTC) #17
pauljensen
I think I addressed Erik and Will's comments. I also made URLRequestAutomationJob access HttpUserAgentSettings directly ...
8 years, 2 months ago (2012-10-24 19:18:59 UTC) #18
mmenke
http://codereview.chromium.org/10918279/diff/94002/net/url_request/http_user_agent_settings.h File net/url_request/http_user_agent_settings.h (right): http://codereview.chromium.org/10918279/diff/94002/net/url_request/http_user_agent_settings.h#newcode35 net/url_request/http_user_agent_settings.h:35: DISALLOW_COPY_AND_ASSIGN(HttpUserAgentSettings); On 2012/10/24 19:19:00, pauljensen wrote: > On 2012/10/24 ...
8 years, 2 months ago (2012-10-24 19:25:22 UTC) #19
willchan no longer on Chromium
http://codereview.chromium.org/10918279/diff/94002/net/url_request/http_user_agent_settings.h File net/url_request/http_user_agent_settings.h (right): http://codereview.chromium.org/10918279/diff/94002/net/url_request/http_user_agent_settings.h#newcode25 net/url_request/http_user_agent_settings.h:25: virtual std::string GetAcceptLanguage() = 0; On 2012/10/24 19:19:00, pauljensen ...
8 years, 2 months ago (2012-10-24 19:30:08 UTC) #20
pauljensen
On 2012/10/24 19:30:08, willchan wrote: > http://codereview.chromium.org/10918279/diff/94002/net/url_request/http_user_agent_settings.h > File net/url_request/http_user_agent_settings.h (right): > > http://codereview.chromium.org/10918279/diff/94002/net/url_request/http_user_agent_settings.h#newcode25 > ...
8 years, 2 months ago (2012-10-24 20:21:29 UTC) #21
willchan no longer on Chromium
Btw, I'm fine keeping them CamelCased if you prefer, since they're virtual. I don't much ...
8 years, 2 months ago (2012-10-24 21:18:54 UTC) #22
mmenke
On 2012/10/24 21:18:54, willchan wrote: > Btw, I'm fine keeping them CamelCased if you prefer, ...
8 years, 2 months ago (2012-10-24 21:22:18 UTC) #23
pauljensen
On 2012/10/24 21:22:18, Matt Menke wrote: > On 2012/10/24 21:18:54, willchan wrote: > > Btw, ...
8 years, 1 month ago (2012-10-25 12:59:19 UTC) #24
mmenke
On 2012/10/25 12:59:19, pauljensen wrote: > On 2012/10/24 21:22:18, Matt Menke wrote: > > On ...
8 years, 1 month ago (2012-10-25 14:15:41 UTC) #25
mmenke
http://codereview.chromium.org/10918279/diff/117003/chrome/browser/profiles/off_the_record_profile_io_data.cc File chrome/browser/profiles/off_the_record_profile_io_data.cc (right): http://codereview.chromium.org/10918279/diff/117003/chrome/browser/profiles/off_the_record_profile_io_data.cc#newcode50 chrome/browser/profiles/off_the_record_profile_io_data.cc:50: nit: Don't think this blank line is really needed ...
8 years, 1 month ago (2012-10-25 18:06:32 UTC) #26
pauljensen
I addressed mmenke's comments. http://codereview.chromium.org/10918279/diff/117003/chrome/browser/profiles/profile_io_data.cc File chrome/browser/profiles/profile_io_data.cc (right): http://codereview.chromium.org/10918279/diff/117003/chrome/browser/profiles/profile_io_data.cc#newcode667 chrome/browser/profiles/profile_io_data.cc:667: chrome_http_user_agent_settings_->CleanupOnUIThread(); On 2012/10/25 18:06:33, Matt ...
8 years, 1 month ago (2012-10-25 21:30:24 UTC) #27
mmenke
LGTM http://codereview.chromium.org/10918279/diff/117003/chrome/browser/profiles/profile_io_data.cc File chrome/browser/profiles/profile_io_data.cc (right): http://codereview.chromium.org/10918279/diff/117003/chrome/browser/profiles/profile_io_data.cc#newcode667 chrome/browser/profiles/profile_io_data.cc:667: chrome_http_user_agent_settings_->CleanupOnUIThread(); On 2012/10/25 21:30:25, pauljensen wrote: > On ...
8 years, 1 month ago (2012-10-26 18:42:08 UTC) #28
erikwright (departed)
http://codereview.chromium.org/10918279/diff/94002/net/url_request/http_user_agent_settings.h File net/url_request/http_user_agent_settings.h (right): http://codereview.chromium.org/10918279/diff/94002/net/url_request/http_user_agent_settings.h#newcode35 net/url_request/http_user_agent_settings.h:35: DISALLOW_COPY_AND_ASSIGN(HttpUserAgentSettings); On 2012/10/24 19:25:22, Matt Menke wrote: > On ...
8 years, 1 month ago (2012-10-26 21:10:45 UTC) #29
pauljensen
http://codereview.chromium.org/10918279/diff/102019/chrome/browser/net/chrome_http_user_agent_settings.cc File chrome/browser/net/chrome_http_user_agent_settings.cc (right): http://codereview.chromium.org/10918279/diff/102019/chrome/browser/net/chrome_http_user_agent_settings.cc#newcode32 chrome/browser/net/chrome_http_user_agent_settings.cc:32: DCHECK(content::BrowserThread::CurrentlyOn(content::BrowserThread::UI)); On 2012/10/26 21:10:46, erikwright wrote: > Is there ...
8 years, 1 month ago (2012-10-26 22:04:14 UTC) #30
mmenke
On 2012/10/26 22:04:14, pauljensen wrote: > http://codereview.chromium.org/10918279/diff/102019/chrome/browser/net/chrome_http_user_agent_settings.cc > File chrome/browser/net/chrome_http_user_agent_settings.cc (right): > > http://codereview.chromium.org/10918279/diff/102019/chrome/browser/net/chrome_http_user_agent_settings.cc#newcode32 > ...
8 years, 1 month ago (2012-10-26 22:22:15 UTC) #31
mmenke
On 2012/10/26 22:22:15, Matt Menke wrote: > On 2012/10/26 22:04:14, pauljensen wrote: > > > ...
8 years, 1 month ago (2012-10-26 22:23:55 UTC) #32
erikwright (departed)
I suggest adding tests, comments, and any changes necessary to make it safe to use ...
8 years, 1 month ago (2012-10-26 23:30:33 UTC) #33
pauljensen
The change to the comment and test for PrefMember::Destroy() has landed (http://crrev.com/165066).
8 years, 1 month ago (2012-10-31 00:34:49 UTC) #34
erikwright (departed)
LGTM.
8 years, 1 month ago (2012-10-31 00:38:43 UTC) #35
erikwright (departed)
Actually, LVGTM. This is a big improvement!
8 years, 1 month ago (2012-10-31 00:39:11 UTC) #36
mmenke
On 2012/10/31 00:39:11, erikwright wrote: > Actually, LVGTM. This is a big improvement! Still LGTM ...
8 years, 1 month ago (2012-10-31 00:51:14 UTC) #37
pauljensen
Brett, could you please review the chrome/, content/ and webkit/ changes? They're small but plentiful. ...
8 years, 1 month ago (2012-10-31 14:06:48 UTC) #38
pauljensen
Jonathan, could you review android_webview/browser/net/aw_url_request_context_getter.cc please?
8 years, 1 month ago (2012-10-31 17:34:36 UTC) #39
joth
lgtm
8 years, 1 month ago (2012-11-01 12:04:55 UTC) #40
brettw
LGTM I didn't check the details.
8 years, 1 month ago (2012-11-05 05:42:38 UTC) #41
tim (not reviewing)
sync/ LGTM
8 years, 1 month ago (2012-11-05 18:53:46 UTC) #42
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/pauljensen@chromium.org/10918279/108088
8 years, 1 month ago (2012-11-06 12:42:36 UTC) #43
commit-bot: I haz the power
Failed to apply patch for chrome/browser/net/chrome_url_request_context.cc: While running patch -p1 --forward --force --no-backup-if-mismatch; patching file ...
8 years, 1 month ago (2012-11-06 12:42:45 UTC) #44
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/pauljensen@chromium.org/10918279/155007
8 years, 1 month ago (2012-11-06 13:15:05 UTC) #45
pauljensen
Erik, can you take a quick look at chrome_frame/test/net/fake_external_tab.cc?
8 years, 1 month ago (2012-11-06 16:16:19 UTC) #46
erikwright (departed)
LGTM.
8 years, 1 month ago (2012-11-06 16:34:22 UTC) #47
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/pauljensen@chromium.org/10918279/154008
8 years, 1 month ago (2012-11-06 16:38:54 UTC) #48
commit-bot: I haz the power
Step "update" is always a major failure. Look at the try server FAQ for more ...
8 years, 1 month ago (2012-11-06 17:18:57 UTC) #49
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/pauljensen@chromium.org/10918279/154008
8 years, 1 month ago (2012-11-06 17:45:00 UTC) #50
commit-bot: I haz the power
Sorry for I got bad news for ya. Compile failed with a clobber build on ...
8 years, 1 month ago (2012-11-06 18:11:52 UTC) #51
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/pauljensen@chromium.org/10918279/154008
8 years, 1 month ago (2012-11-06 19:30:02 UTC) #52
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/pauljensen@chromium.org/10918279/154008
8 years, 1 month ago (2012-11-07 13:44:05 UTC) #53
commit-bot: I haz the power
8 years, 1 month ago (2012-11-07 15:08:45 UTC) #54
Change committed as 166425

Powered by Google App Engine
This is Rietveld 408576698