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

Side by Side Diff: net/proxy/mojo_proxy_resolver_impl.cc

Issue 975083002: mojo/common: Decouple GURL dependency (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 9 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
« net/net.gyp ('K') | « net/net.gyp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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/proxy/mojo_proxy_resolver_impl.h" 5 #include "net/proxy/mojo_proxy_resolver_impl.h"
6 6
7 #include "base/stl_util.h" 7 #include "base/stl_util.h"
8 #include "mojo/common/common_type_converters.h" 8 #include "mojo/common/common_type_converters.h"
Ken Rockot(use gerrit already) 2015/03/04 03:27:56 Is this header still needed?
Hajime Morrita 2015/03/05 18:29:41 Done.
9 #include "mojo/common/url_type_converters.h"
9 #include "net/base/net_errors.h" 10 #include "net/base/net_errors.h"
10 #include "net/base/net_log.h" 11 #include "net/base/net_log.h"
11 #include "net/proxy/mojo_proxy_type_converters.h" 12 #include "net/proxy/mojo_proxy_type_converters.h"
12 #include "net/proxy/proxy_info.h" 13 #include "net/proxy/proxy_info.h"
13 #include "net/proxy/proxy_resolver.h" 14 #include "net/proxy/proxy_resolver.h"
14 #include "net/proxy/proxy_resolver_script_data.h" 15 #include "net/proxy/proxy_resolver_script_data.h"
15 16
16 namespace net { 17 namespace net {
17 18
18 class MojoProxyResolverImpl::Job : public mojo::ErrorHandler { 19 class MojoProxyResolverImpl::Job : public mojo::ErrorHandler {
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
147 148
148 MojoProxyResolverImpl::SetPacScriptRequest::SetPacScriptRequest( 149 MojoProxyResolverImpl::SetPacScriptRequest::SetPacScriptRequest(
149 const scoped_refptr<ProxyResolverScriptData>& script_data, 150 const scoped_refptr<ProxyResolverScriptData>& script_data,
150 const mojo::Callback<void(int32_t)>& callback) 151 const mojo::Callback<void(int32_t)>& callback)
151 : script_data(script_data), callback(callback) { 152 : script_data(script_data), callback(callback) {
152 } 153 }
153 154
154 MojoProxyResolverImpl::SetPacScriptRequest::~SetPacScriptRequest() = default; 155 MojoProxyResolverImpl::SetPacScriptRequest::~SetPacScriptRequest() = default;
155 156
156 } // namespace net 157 } // namespace net
OLDNEW
« net/net.gyp ('K') | « net/net.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698