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

Side by Side Diff: net/url_request/url_request_context_builder.cc

Issue 2786583002: chromeos: Check both original and absolute paths for file: scheme (Closed)
Patch Set: remove dcheck Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « net/url_request/file_protocol_handler.cc ('k') | net/url_request/url_request_file_dir_job.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "net/url_request/url_request_context_builder.h" 5 #include "net/url_request/url_request_context_builder.h"
6 6
7 #include <string> 7 #include <string>
8 #include <utility> 8 #include <utility>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
118 return true; 118 return true;
119 } 119 }
120 120
121 bool OnCanSetCookie(const URLRequest& request, 121 bool OnCanSetCookie(const URLRequest& request,
122 const std::string& cookie_line, 122 const std::string& cookie_line,
123 CookieOptions* options) override { 123 CookieOptions* options) override {
124 return true; 124 return true;
125 } 125 }
126 126
127 bool OnCanAccessFile(const URLRequest& request, 127 bool OnCanAccessFile(const URLRequest& request,
128 const base::FilePath& path) const override { 128 const base::FilePath& original_path,
129 const base::FilePath& absolute_path) const override {
129 return true; 130 return true;
130 } 131 }
131 132
132 DISALLOW_COPY_AND_ASSIGN(BasicNetworkDelegate); 133 DISALLOW_COPY_AND_ASSIGN(BasicNetworkDelegate);
133 }; 134 };
134 135
135 // Define a context class that can self-manage the ownership of its components 136 // Define a context class that can self-manage the ownership of its components
136 // via a UrlRequestContextStorage object. Since it cancels requests in its 137 // via a UrlRequestContextStorage object. Since it cancels requests in its
137 // destructor, it's not safe to subclass this. 138 // destructor, it's not safe to subclass this.
138 class ContainerURLRequestContext final : public URLRequestContext { 139 class ContainerURLRequestContext final : public URLRequestContext {
(...skipping 400 matching lines...) Expand 10 before | Expand all | Expand 10 after
539 std::unique_ptr<ProxyConfigService> proxy_config_service, 540 std::unique_ptr<ProxyConfigService> proxy_config_service,
540 URLRequestContext* url_request_context, 541 URLRequestContext* url_request_context,
541 HostResolver* host_resolver, 542 HostResolver* host_resolver,
542 NetworkDelegate* network_delegate, 543 NetworkDelegate* network_delegate,
543 NetLog* net_log) { 544 NetLog* net_log) {
544 return ProxyService::CreateUsingSystemProxyResolver( 545 return ProxyService::CreateUsingSystemProxyResolver(
545 std::move(proxy_config_service), net_log); 546 std::move(proxy_config_service), net_log);
546 } 547 }
547 548
548 } // namespace net 549 } // namespace net
OLDNEW
« no previous file with comments | « net/url_request/file_protocol_handler.cc ('k') | net/url_request/url_request_file_dir_job.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698