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

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

Issue 955263002: Rename mojo_type_converters.* to mojo_{host,proxy}_type_converters.* (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
« no previous file with comments | « net/net.gyp ('k') | net/proxy/mojo_proxy_resolver_impl_unittest.cc » ('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 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"
9 #include "net/base/net_errors.h" 9 #include "net/base/net_errors.h"
10 #include "net/base/net_log.h" 10 #include "net/base/net_log.h"
11 #include "net/proxy/mojo_type_converters.h" 11 #include "net/proxy/mojo_proxy_type_converters.h"
12 #include "net/proxy/proxy_info.h" 12 #include "net/proxy/proxy_info.h"
13 #include "net/proxy/proxy_resolver.h" 13 #include "net/proxy/proxy_resolver.h"
14 #include "net/proxy/proxy_resolver_script_data.h" 14 #include "net/proxy/proxy_resolver_script_data.h"
15 15
16 namespace net { 16 namespace net {
17 17
18 class MojoProxyResolverImpl::Job : public mojo::ErrorHandler { 18 class MojoProxyResolverImpl::Job : public mojo::ErrorHandler {
19 public: 19 public:
20 Job(interfaces::ProxyResolverRequestClientPtr client, 20 Job(interfaces::ProxyResolverRequestClientPtr client,
21 MojoProxyResolverImpl* resolver, 21 MojoProxyResolverImpl* resolver,
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
147 147
148 MojoProxyResolverImpl::SetPacScriptRequest::SetPacScriptRequest( 148 MojoProxyResolverImpl::SetPacScriptRequest::SetPacScriptRequest(
149 const scoped_refptr<ProxyResolverScriptData>& script_data, 149 const scoped_refptr<ProxyResolverScriptData>& script_data,
150 const mojo::Callback<void(int32_t)>& callback) 150 const mojo::Callback<void(int32_t)>& callback)
151 : script_data(script_data), callback(callback) { 151 : script_data(script_data), callback(callback) {
152 } 152 }
153 153
154 MojoProxyResolverImpl::SetPacScriptRequest::~SetPacScriptRequest() = default; 154 MojoProxyResolverImpl::SetPacScriptRequest::~SetPacScriptRequest() = default;
155 155
156 } // namespace net 156 } // namespace net
OLDNEW
« no previous file with comments | « net/net.gyp ('k') | net/proxy/mojo_proxy_resolver_impl_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698