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

Issue 11931024: Removed static factories for data, ftp, file, and about jobs. (Closed)

Created:
7 years, 11 months ago by pauljensen
Modified:
7 years, 7 months ago
CC:
chromium-reviews, cbentzel+watch_chromium.org, sail+watch_chromium.org, Aaron Boodman, darin-cc_chromium.org, Paweł Hajdan Jr., chromium-apps-reviews_chromium.org
Visibility:
Public.

Description

Removed static factories for data, ftp, file, and about jobs. Instead add corresponding ProtocolHandlers as needed. Remove URLRequestContext members used by these static factories. Bake FtpAuthCache into FtpProtocolHandler as it was already unique per FtpProtocolHandler. This is a revived version of http://crrev.com/10836206 BUG=142945 Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=188912 Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=198915

Patch Set 1 #

Patch Set 2 : Fix build failures and get net_unittests passing #

Patch Set 3 : Address mmenke comment from original CL #

Patch Set 4 : Update ProfileIOData::IsHandledProtocol() #

Patch Set 5 : Add FileProtocolHandler to content_shell #

Patch Set 6 : Fix various problems #

Patch Set 7 : Remove dead members of URLRequestContext #

Patch Set 8 : Fix more tests #

Patch Set 9 : Fix Android content_shell failures #

Patch Set 10 : Move FtpAuthCache into FtpProtocolHandler #

Patch Set 11 : Cleanup #

Total comments: 10

Patch Set 12 : Address erikwright's comments #

Total comments: 22

Patch Set 13 : Address some of mmenke's comments #

Patch Set 14 : Add conditional file, data, ftp support to URLRequestContextBuilder #

Patch Set 15 : sync (r180386) #

Patch Set 16 : Add IsSafeRedirectTarget #

Patch Set 17 : sync (r182420) #

Patch Set 18 : Fix BrowserPluginHostTest.LoadAbort #

Patch Set 19 : Add test for IsSafeRedirectTarget #

Total comments: 17

Patch Set 20 : Address mmenke's comments #

Total comments: 1

Patch Set 21 : Remove semicolon #

Patch Set 22 : sync (r183765) #

Patch Set 23 : Add IsSafeRedirectTarget to AboutProtocolHandler #

Patch Set 24 : sync (r190075) #

Patch Set 25 : Fix new URLRequestFtpJob tests #

Patch Set 26 : fix build failure from r189695 #

Patch Set 27 : Fix failing tests #

Patch Set 28 : sync (r194174) #

Patch Set 29 : Fix FtpProxyRequestNeedProxyAndServerAuth #

Patch Set 30 : Fix latent merge conflict with r192649 #

Total comments: 2

Patch Set 31 : Address phajdan.jr's comments #

Total comments: 2

Patch Set 32 : Add missing virtual and OVERRIDE #

Patch Set 33 : sync (r196396) #

Patch Set 34 : Add destructor for FtpProtocolHandler #

Patch Set 35 : Add IsSafeRedirectTarget to CrOS drive test #

Patch Set 36 : sync (r198777) #

Patch Set 37 : sync (r198785) #

Unified diffs Side-by-side diffs Delta from patch set Stats (+350 lines, -264 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 1 chunk +2 lines, -0 lines 0 comments Download
M android_webview/browser/net/aw_url_request_job_factory.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +1 line, -0 lines 0 comments Download
M android_webview/browser/net/aw_url_request_job_factory.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 1 chunk +4 lines, -0 lines 0 comments Download
M chrome/browser/chromeos/drive/drive_url_request_job_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 1 chunk +4 lines, -0 lines 0 comments Download
M chrome/browser/custom_handlers/protocol_handler_registry.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 +1 line, -0 lines 0 comments Download
M chrome/browser/custom_handlers/protocol_handler_registry.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 +6 lines, -0 lines 0 comments Download
M chrome/browser/custom_handlers/protocol_handler_registry_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 1 chunk +3 lines, -0 lines 0 comments Download
M chrome/browser/extensions/api/web_request/web_request_api_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 4 chunks +9 lines, -0 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 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 2 chunks +0 lines, -3 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 25 26 27 28 29 30 31 32 33 34 35 5 chunks +0 lines, -9 lines 0 comments Download
M chrome/browser/net/about_protocol_handler.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 +1 line, -0 lines 0 comments Download
M chrome/browser/net/about_protocol_handler.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 +4 lines, -0 lines 0 comments Download
M chrome/browser/net/connection_tester.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 2 chunks +0 lines, -5 lines 0 comments Download
M chrome/browser/profiles/off_the_record_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 1 chunk +5 lines, -0 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 26 27 28 29 30 31 32 33 34 35 5 chunks +3 lines, -12 lines 0 comments Download
M chrome/browser/profiles/profile_impl_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 1 chunk +1 line, -0 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 30 31 32 33 34 35 5 chunks +3 lines, -12 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 26 27 2 chunks +2 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 26 27 28 29 30 31 32 33 34 35 3 chunks +10 lines, -7 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 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 2 chunks +0 lines, -3 lines 0 comments Download
M content/browser/browser_plugin/browser_plugin_host_browsertest.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 2 chunks +8 lines, -1 line 0 comments Download
M content/browser/child_process_security_policy_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 1 chunk +7 lines, -1 line 0 comments Download
M content/browser/renderer_host/render_view_host_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 2 chunks +34 lines, -0 lines 0 comments Download
M content/browser/webui/url_data_manager_backend.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 +4 lines, -0 lines 0 comments Download
M content/shell/shell_content_browser_client.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 +1 line, -0 lines 0 comments Download
M content/shell/shell_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 2 chunks +22 lines, -0 lines 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 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 3 chunks +12 lines, -6 lines 0 comments Download
M net/ftp/ftp_network_session.h View 1 2 3 4 5 6 7 8 9 3 chunks +0 lines, -3 lines 0 comments Download
M net/proxy/proxy_script_fetcher_impl_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 2 chunks +4 lines, -1 line 0 comments Download
M net/url_request/file_protocol_handler.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 2 chunks +3 lines, -0 lines 0 comments Download
M net/url_request/file_protocol_handler.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 1 chunk +4 lines, -0 lines 0 comments Download
M net/url_request/ftp_protocol_handler.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 2 chunks +6 lines, -3 lines 0 comments Download
M net/url_request/ftp_protocol_handler.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 3 chunks +7 lines, -5 lines 0 comments Download
M net/url_request/protocol_intercept_job_factory.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 2 chunks +3 lines, -0 lines 0 comments Download
M net/url_request/protocol_intercept_job_factory.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +5 lines, -0 lines 0 comments Download
M net/url_request/url_request_about_job.h View 1 chunk +0 lines, -2 lines 0 comments Download
M net/url_request/url_request_about_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 30 31 32 33 34 35 1 chunk +0 lines, -7 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 23 5 chunks +0 lines, -23 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 20 21 22 23 3 chunks +0 lines, -7 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 4 chunks +22 lines, -1 line 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 28 29 30 31 32 33 34 35 4 chunks +24 lines, -6 lines 0 comments Download
M net/url_request/url_request_context_storage.h View 1 2 3 4 5 6 2 chunks +0 lines, -3 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 16 17 18 19 20 21 22 23 24 25 26 27 1 chunk +0 lines, -6 lines 0 comments Download
M net/url_request/url_request_data_job.h View 1 chunk +0 lines, -2 lines 0 comments Download
M net/url_request/url_request_data_job.cc View 1 chunk +0 lines, -7 lines 0 comments Download
M net/url_request/url_request_file_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 1 chunk +0 lines, -2 lines 0 comments Download
M net/url_request/url_request_file_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 30 31 32 33 34 35 1 chunk +0 lines, -28 lines 0 comments Download
M net/url_request/url_request_ftp_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 30 31 32 33 34 35 1 chunk +0 lines, -5 lines 0 comments Download
M net/url_request/url_request_ftp_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 30 31 32 33 34 35 2 chunks +1 line, -20 lines 0 comments Download
M net/url_request/url_request_ftp_job_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 13 chunks +56 lines, -24 lines 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 30 31 32 33 34 35 2 chunks +9 lines, -17 lines 0 comments Download
M net/url_request/url_request_job_factory.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 2 chunks +9 lines, -0 lines 0 comments Download
M net/url_request/url_request_job_factory.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +5 lines, -0 lines 0 comments Download
M net/url_request/url_request_job_factory_impl.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +1 line, -0 lines 0 comments Download
M net/url_request/url_request_job_factory_impl.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +16 lines, -0 lines 0 comments Download
M net/url_request/url_request_job_manager.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 2 chunks +0 lines, -10 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 26 27 28 29 30 31 32 33 34 35 1 chunk +0 lines, -8 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 30 31 32 33 34 35 36 5 chunks +24 lines, -9 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 23 24 25 26 27 28 29 30 31 32 33 34 35 4 chunks +4 lines, -4 lines 0 comments Download

Messages

Total messages: 81 (0 generated)
pauljensen
PTAL.
7 years, 11 months ago (2013-01-21 03:59:18 UTC) #1
erikwright (departed)
LGTM. LVGTM! https://codereview.chromium.org/11931024/diff/31004/chrome/browser/profiles/off_the_record_profile_io_data.cc File chrome/browser/profiles/off_the_record_profile_io_data.cc (right): https://codereview.chromium.org/11931024/diff/31004/chrome/browser/profiles/off_the_record_profile_io_data.cc#newcode255 chrome/browser/profiles/off_the_record_profile_io_data.cc:255: #if !defined(DISABLE_FTP_SUPPORT) I think the remainder of ...
7 years, 11 months ago (2013-01-21 16:20:12 UTC) #2
pauljensen
I addresed Erik's comments. https://codereview.chromium.org/11931024/diff/31004/content/shell/shell_content_browser_client.cc File content/shell/shell_content_browser_client.cc (right): https://codereview.chromium.org/11931024/diff/31004/content/shell/shell_content_browser_client.cc#newcode83 content/shell/shell_content_browser_client.cc:83: bool ShellContentBrowserClient::IsHandledURL(const GURL& url) { ...
7 years, 11 months ago (2013-01-22 14:25:03 UTC) #3
mmenke
https://codereview.chromium.org/11931024/diff/36003/chrome/browser/profiles/profile_io_data.cc File chrome/browser/profiles/profile_io_data.cc (left): https://codereview.chromium.org/11931024/diff/36003/chrome/browser/profiles/profile_io_data.cc#oldcode340 chrome/browser/profiles/profile_io_data.cc:340: chrome::kMetadataScheme, Why are you removing this? https://codereview.chromium.org/11931024/diff/36003/chrome/browser/profiles/profile_io_data.cc File chrome/browser/profiles/profile_io_data.cc ...
7 years, 11 months ago (2013-01-22 16:50:37 UTC) #4
mmenke
https://codereview.chromium.org/11931024/diff/31004/content/shell/shell_content_browser_client.cc File content/shell/shell_content_browser_client.cc (right): https://codereview.chromium.org/11931024/diff/31004/content/shell/shell_content_browser_client.cc#newcode83 content/shell/shell_content_browser_client.cc:83: bool ShellContentBrowserClient::IsHandledURL(const GURL& url) { On 2013/01/22 14:25:03, pauljensen ...
7 years, 11 months ago (2013-01-22 16:52:47 UTC) #5
willchan no longer on Chromium
https://codereview.chromium.org/11931024/diff/36003/net/url_request/url_request_context_builder.h File net/url_request/url_request_context_builder.h (left): https://codereview.chromium.org/11931024/diff/36003/net/url_request/url_request_context_builder.h#oldcode89 net/url_request/url_request_context_builder.h:89: void set_ftp_enabled(bool enable) { On 2013/01/22 16:50:37, Matt Menke ...
7 years, 11 months ago (2013-01-23 17:14:54 UTC) #6
pauljensen
I addressed all Matt's comments with either code changes or in a couple cases with ...
7 years, 11 months ago (2013-01-23 21:43:33 UTC) #7
mmenke
https://codereview.chromium.org/11931024/diff/36003/chrome/service/net/service_url_request_context.cc File chrome/service/net/service_url_request_context.cc (left): https://codereview.chromium.org/11931024/diff/36003/chrome/service/net/service_url_request_context.cc#oldcode118 chrome/service/net/service_url_request_context.cc:118: new net::FtpNetworkLayer(host_resolver())); On 2013/01/23 21:43:33, pauljensen wrote: > On ...
7 years, 11 months ago (2013-01-23 22:09:16 UTC) #8
erikwright (departed)
Alternatively, giving the HTTP protocol handler its own URLRequestJobFactory that it uses to fulfill redirects, ...
7 years, 11 months ago (2013-01-23 22:13:42 UTC) #9
pauljensen
https://codereview.chromium.org/11931024/diff/36003/chrome/service/net/service_url_request_context.cc File chrome/service/net/service_url_request_context.cc (left): https://codereview.chromium.org/11931024/diff/36003/chrome/service/net/service_url_request_context.cc#oldcode118 chrome/service/net/service_url_request_context.cc:118: new net::FtpNetworkLayer(host_resolver())); On 2013/01/23 22:09:17, Matt Menke wrote: > ...
7 years, 10 months ago (2013-01-28 19:51:49 UTC) #10
mmenke
On 2013/01/28 19:51:49, pauljensen wrote: > https://codereview.chromium.org/11931024/diff/36003/chrome/service/net/service_url_request_context.cc > File chrome/service/net/service_url_request_context.cc (left): > > https://codereview.chromium.org/11931024/diff/36003/chrome/service/net/service_url_request_context.cc#oldcode118 > ...
7 years, 10 months ago (2013-01-28 19:52:58 UTC) #11
mmenke
On 2013/01/28 19:52:58, Matt Menke wrote: > On 2013/01/28 19:51:49, pauljensen wrote: > > > ...
7 years, 10 months ago (2013-01-28 19:54:53 UTC) #12
pauljensen
I've addressed all the remaining issues. Matt, PTAL.
7 years, 10 months ago (2013-02-15 15:28:15 UTC) #13
mmenke
https://codereview.chromium.org/11931024/diff/58005/chrome/browser/custom_handlers/protocol_handler_registry.cc File chrome/browser/custom_handlers/protocol_handler_registry.cc (right): https://codereview.chromium.org/11931024/diff/58005/chrome/browser/custom_handlers/protocol_handler_registry.cc#newcode211 chrome/browser/custom_handlers/protocol_handler_registry.cc:211: return job_factory_->IsSafeRedirectTarget(location); This seems weird to me. If io_thread_delegate_ ...
7 years, 10 months ago (2013-02-19 17:26:15 UTC) #14
pauljensen
https://codereview.chromium.org/11931024/diff/58005/chrome/browser/custom_handlers/protocol_handler_registry.cc File chrome/browser/custom_handlers/protocol_handler_registry.cc (right): https://codereview.chromium.org/11931024/diff/58005/chrome/browser/custom_handlers/protocol_handler_registry.cc#newcode211 chrome/browser/custom_handlers/protocol_handler_registry.cc:211: return job_factory_->IsSafeRedirectTarget(location); On 2013/02/19 17:26:15, mmenke wrote: > This ...
7 years, 10 months ago (2013-02-20 15:13:26 UTC) #15
erikwright (departed)
https://codereview.chromium.org/11931024/diff/58005/chrome/browser/custom_handlers/protocol_handler_registry.cc File chrome/browser/custom_handlers/protocol_handler_registry.cc (right): https://codereview.chromium.org/11931024/diff/58005/chrome/browser/custom_handlers/protocol_handler_registry.cc#newcode211 chrome/browser/custom_handlers/protocol_handler_registry.cc:211: return job_factory_->IsSafeRedirectTarget(location); On 2013/02/20 15:13:27, pauljensen wrote: > On ...
7 years, 10 months ago (2013-02-20 15:25:48 UTC) #16
mmenke
LGTM https://codereview.chromium.org/11931024/diff/58005/chrome/browser/custom_handlers/protocol_handler_registry.cc File chrome/browser/custom_handlers/protocol_handler_registry.cc (right): https://codereview.chromium.org/11931024/diff/58005/chrome/browser/custom_handlers/protocol_handler_registry.cc#newcode211 chrome/browser/custom_handlers/protocol_handler_registry.cc:211: return job_factory_->IsSafeRedirectTarget(location); On 2013/02/20 15:25:48, erikwright wrote: > ...
7 years, 10 months ago (2013-02-20 15:48:58 UTC) #17
pauljensen
Matt, I added an IsSafeRedirectTarget() implementation that always returns false to the AboutProtocolHandler. I think ...
7 years, 10 months ago (2013-02-22 14:16:58 UTC) #18
mmenke
On 2013/02/22 14:16:58, pauljensen wrote: > Matt, I added an IsSafeRedirectTarget() implementation that always returns ...
7 years, 10 months ago (2013-02-22 16:36:27 UTC) #19
pauljensen
On 2013/02/22 16:36:27, mmenke wrote: > We really should have browser tests for these, if ...
7 years, 9 months ago (2013-02-27 14:52:59 UTC) #20
mmenke
On 2013/02/27 14:52:59, pauljensen wrote: > On 2013/02/22 16:36:27, mmenke wrote: > > We really ...
7 years, 9 months ago (2013-02-27 14:58:09 UTC) #21
pauljensen
On 2013/02/27 14:58:09, mmenke wrote: > On 2013/02/27 14:52:59, pauljensen wrote: > > On 2013/02/22 ...
7 years, 9 months ago (2013-02-27 15:56:20 UTC) #22
mmenke
On 2013/02/27 15:56:20, pauljensen wrote: > On 2013/02/27 14:58:09, mmenke wrote: > > On 2013/02/27 ...
7 years, 9 months ago (2013-02-27 16:01:55 UTC) #23
pauljensen
On 2013/02/27 16:01:55, mmenke wrote: > On 2013/02/27 15:56:20, pauljensen wrote: > > On 2013/02/27 ...
7 years, 9 months ago (2013-02-27 16:03:09 UTC) #24
mmenke
On 2013/02/27 16:01:55, mmenke wrote: > On 2013/02/27 15:56:20, pauljensen wrote: > > On 2013/02/27 ...
7 years, 9 months ago (2013-02-27 16:16:46 UTC) #25
pauljensen
Brett, could you review chrome/ and content/ and webkit/ files? Martin, could you review android_webview/? ...
7 years, 9 months ago (2013-02-27 22:12:06 UTC) #26
mkosiba (inactive)
lgtm for android_webview
7 years, 9 months ago (2013-02-28 10:57:37 UTC) #27
brettw
content/webkit lgtm
7 years, 9 months ago (2013-02-28 21:53:22 UTC) #28
pauljensen
Brett, could you also take a look at the chrome/ files? You can skip the ...
7 years, 9 months ago (2013-02-28 22:58:38 UTC) #29
pauljensen
Brett, ping. On 2013/02/28 22:58:38, pauljensen wrote: > Brett, could you also take a look ...
7 years, 9 months ago (2013-03-05 17:36:41 UTC) #30
brettw
LGTM
7 years, 9 months ago (2013-03-14 04:42:41 UTC) #31
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/pauljensen@chromium.org/11931024/102001
7 years, 9 months ago (2013-03-15 16:20:58 UTC) #32
commit-bot: I haz the power
Failed to apply patch for content/shell/shell_url_request_context_getter.cc: While running patch -p1 --forward --force --no-backup-if-mismatch; patching file ...
7 years, 9 months ago (2013-03-15 16:21:12 UTC) #33
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/pauljensen@chromium.org/11931024/113001
7 years, 9 months ago (2013-03-15 16:38:41 UTC) #34
commit-bot: I haz the power
Retried try job too often on win_rel for step(s) browser_tests http://build.chromium.org/p/tryserver.chromium/buildstatus?builder=win_rel&number=123065
7 years, 9 months ago (2013-03-15 17:59:26 UTC) #35
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/pauljensen@chromium.org/11931024/113001
7 years, 9 months ago (2013-03-15 21:39:20 UTC) #36
commit-bot: I haz the power
The commit queue went berserk retrying too often for a seemingly flaky test. Builder is ...
7 years, 9 months ago (2013-03-16 08:40:38 UTC) #37
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/pauljensen@chromium.org/11931024/113001
7 years, 9 months ago (2013-03-17 11:46:54 UTC) #38
commit-bot: I haz the power
The commit queue went berserk retrying too often for a seemingly flaky test. Builder is ...
7 years, 9 months ago (2013-03-17 20:16:36 UTC) #39
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/pauljensen@chromium.org/11931024/113001
7 years, 9 months ago (2013-03-19 01:48:19 UTC) #40
commit-bot: I haz the power
Change committed as 188912
7 years, 9 months ago (2013-03-19 01:56:47 UTC) #41
pauljensen
Matt, I think I've revived this CL since it was reverted. Can you take a ...
7 years, 8 months ago (2013-04-25 19:06:19 UTC) #42
mmenke
On 2013/04/25 19:06:19, pauljensen wrote: > Matt, I think I've revived this CL since it ...
7 years, 8 months ago (2013-04-25 20:06:43 UTC) #43
pauljensen
Brett, could you look over these three files that have changed slightly since this change ...
7 years, 8 months ago (2013-04-25 21:36:13 UTC) #44
Paweł Hajdan Jr.
Some comments from the net/ftp OWNER. I'd like to remind you to get my final ...
7 years, 7 months ago (2013-04-29 18:45:25 UTC) #45
pauljensen
Pawel, I think I addressed your comments, PTAL. I couldn't agree more with the mutable ...
7 years, 7 months ago (2013-04-29 20:30:52 UTC) #46
Paweł Hajdan Jr.
FTP code LGTM, thanks!
7 years, 7 months ago (2013-04-29 21:09:10 UTC) #47
pauljensen
Matt, could you take a look at the diffs between patch-set 30 and 31 that ...
7 years, 7 months ago (2013-04-29 21:15:38 UTC) #48
mmenke1
https://codereview.chromium.org/11931024/diff/213001/net/url_request/url_request_ftp_job_unittest.cc File net/url_request/url_request_ftp_job_unittest.cc (right): https://codereview.chromium.org/11931024/diff/213001/net/url_request/url_request_ftp_job_unittest.cc#newcode105 net/url_request/url_request_ftp_job_unittest.cc:105: FtpTransaction* CreateTransaction() { virtual OVERRIDE https://codereview.chromium.org/11931024/diff/213001/net/url_request/url_request_ftp_job_unittest.cc#newcode109 net/url_request/url_request_ftp_job_unittest.cc:109: void Suspend(bool ...
7 years, 7 months ago (2013-04-29 21:17:22 UTC) #49
pauljensen
Matt, PTAL.
7 years, 7 months ago (2013-04-29 21:24:40 UTC) #50
mmenke
On 2013/04/29 21:24:40, pauljensen wrote: > Matt, PTAL. LGTM
7 years, 7 months ago (2013-04-29 21:27:56 UTC) #51
pauljensen
Brett, could you look over these three files that have changed slightly since this change ...
7 years, 7 months ago (2013-04-29 21:29:26 UTC) #52
brettw
I think the existing high-level owners LGTM should be fine since you only changed a ...
7 years, 7 months ago (2013-04-30 21:39:34 UTC) #53
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/pauljensen@chromium.org/11931024/226001
7 years, 7 months ago (2013-05-01 14:45:37 UTC) #54
commit-bot: I haz the power
Retried try job too often on chromium_presubmit for step(s) presubmit http://build.chromium.org/p/tryserver.chromium/buildstatus?builder=chromium_presubmit&number=688
7 years, 7 months ago (2013-05-01 14:53:31 UTC) #55
pauljensen
James, could you review this file: webkit/tools/test_shell/test_shell_request_context.cc Brett reviewed it in the past but is ...
7 years, 7 months ago (2013-05-01 15:01:06 UTC) #56
jamesr
webkit/ lgtm
7 years, 7 months ago (2013-05-01 17:30:22 UTC) #57
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/pauljensen@chromium.org/11931024/226001
7 years, 7 months ago (2013-05-01 18:05:56 UTC) #58
commit-bot: I haz the power
Sorry for I got bad news for ya. Compile failed with a clobber build on ...
7 years, 7 months ago (2013-05-01 18:24:11 UTC) #59
pauljensen
Matt, could you review the empty destructor I added to FtpProtocolHandler?
7 years, 7 months ago (2013-05-01 19:33:59 UTC) #60
mmenke
On 2013/05/01 19:33:59, pauljensen wrote: > Matt, could you review the empty destructor I added ...
7 years, 7 months ago (2013-05-01 19:35:12 UTC) #61
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/pauljensen@chromium.org/11931024/250001
7 years, 7 months ago (2013-05-01 19:36:08 UTC) #62
commit-bot: I haz the power
Sorry for I got bad news for ya. Compile failed with a clobber build on ...
7 years, 7 months ago (2013-05-01 20:11:00 UTC) #63
pauljensen
Matt, could you please review the IsSafeForRedirect() I added to chrome/browser/chromeos/drive/drive_url_request_job_unittest.cc
7 years, 7 months ago (2013-05-01 21:42:42 UTC) #64
mmenke
On 2013/05/01 21:42:42, pauljensen wrote: > Matt, could you please review the IsSafeForRedirect() I added ...
7 years, 7 months ago (2013-05-01 21:49:35 UTC) #65
pauljensen
Matt, I should mention the implementation of IsSafeForRedirect() I just added is in a unittest. ...
7 years, 7 months ago (2013-05-02 14:12:40 UTC) #66
mmenke
On 2013/05/02 14:12:40, pauljensen wrote: > Matt, I should mention the implementation of IsSafeForRedirect() I ...
7 years, 7 months ago (2013-05-02 14:52:57 UTC) #67
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/pauljensen@chromium.org/11931024/240005
7 years, 7 months ago (2013-05-02 18:53:48 UTC) #68
commit-bot: I haz the power
Retried try job too often on linux_chromeos for step(s) browser_tests http://build.chromium.org/p/tryserver.chromium/buildstatus?builder=linux_chromeos&number=109992
7 years, 7 months ago (2013-05-02 21:25:26 UTC) #69
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/pauljensen@chromium.org/11931024/240005
7 years, 7 months ago (2013-05-03 00:37:28 UTC) #70
commit-bot: I haz the power
Retried try job too often on linux_chromeos for step(s) browser_tests http://build.chromium.org/p/tryserver.chromium/buildstatus?builder=linux_chromeos&number=110307
7 years, 7 months ago (2013-05-03 08:05:13 UTC) #71
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/pauljensen@chromium.org/11931024/240005
7 years, 7 months ago (2013-05-03 22:36:52 UTC) #72
commit-bot: I haz the power
Failed to apply patch for net/proxy/proxy_script_fetcher_impl_unittest.cc: While running patch -p1 --forward --force --no-backup-if-mismatch; patching file ...
7 years, 7 months ago (2013-05-03 22:37:08 UTC) #73
pauljensen
Scott, Matt has thoroughly reviewed this CL as a whole and Brett reviewed the chrome/ ...
7 years, 7 months ago (2013-05-04 03:05:47 UTC) #74
sky
If Brett already reviewed this I'm rubber stamping it: LGTM
7 years, 7 months ago (2013-05-06 15:48:09 UTC) #75
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/pauljensen@chromium.org/11931024/280001
7 years, 7 months ago (2013-05-07 19:06:46 UTC) #76
commit-bot: I haz the power
Failed to apply patch for chrome/browser/profiles/off_the_record_profile_io_data.cc: While running patch -p1 --forward --force --no-backup-if-mismatch; patching file ...
7 years, 7 months ago (2013-05-07 19:08:30 UTC) #77
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/pauljensen@chromium.org/11931024/286001
7 years, 7 months ago (2013-05-07 19:56:26 UTC) #78
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/pauljensen@chromium.org/11931024/284002
7 years, 7 months ago (2013-05-07 20:24:27 UTC) #79
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/pauljensen@chromium.org/11931024/284002
7 years, 7 months ago (2013-05-08 15:06:44 UTC) #80
commit-bot: I haz the power
7 years, 7 months ago (2013-05-08 16:04:37 UTC) #81
Message was sent while issue was closed.
Change committed as 198915

Powered by Google App Engine
This is Rietveld 408576698