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

Side by Side Diff: net/proxy/proxy_resolver_mac.h

Issue 1535363003: Switch to standard integer types in net/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: stddef Created 4 years, 12 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/proxy/proxy_resolver_factory_mojo.cc ('k') | net/proxy/proxy_resolver_perftest.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 (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 #ifndef NET_PROXY_PROXY_RESOLVER_MAC_H_ 5 #ifndef NET_PROXY_PROXY_RESOLVER_MAC_H_
6 #define NET_PROXY_PROXY_RESOLVER_MAC_H_ 6 #define NET_PROXY_PROXY_RESOLVER_MAC_H_
7 7
8 #include "base/compiler_specific.h" 8 #include "base/compiler_specific.h"
9 #include "base/macros.h"
9 #include "net/base/net_export.h" 10 #include "net/base/net_export.h"
10 #include "net/proxy/proxy_resolver_factory.h" 11 #include "net/proxy/proxy_resolver_factory.h"
11 #include "url/gurl.h" 12 #include "url/gurl.h"
12 13
13 namespace net { 14 namespace net {
14 15
15 // Implementation of ProxyResolverFactory that uses the Mac CFProxySupport to 16 // Implementation of ProxyResolverFactory that uses the Mac CFProxySupport to
16 // implement proxies. 17 // implement proxies.
17 class NET_EXPORT ProxyResolverFactoryMac : public ProxyResolverFactory { 18 class NET_EXPORT ProxyResolverFactoryMac : public ProxyResolverFactory {
18 public: 19 public:
19 ProxyResolverFactoryMac(); 20 ProxyResolverFactoryMac();
20 21
21 int CreateProxyResolver( 22 int CreateProxyResolver(
22 const scoped_refptr<ProxyResolverScriptData>& pac_script, 23 const scoped_refptr<ProxyResolverScriptData>& pac_script,
23 scoped_ptr<ProxyResolver>* resolver, 24 scoped_ptr<ProxyResolver>* resolver,
24 const CompletionCallback& callback, 25 const CompletionCallback& callback,
25 scoped_ptr<Request>* request) override; 26 scoped_ptr<Request>* request) override;
26 27
27 private: 28 private:
28 DISALLOW_COPY_AND_ASSIGN(ProxyResolverFactoryMac); 29 DISALLOW_COPY_AND_ASSIGN(ProxyResolverFactoryMac);
29 }; 30 };
30 31
31 } // namespace net 32 } // namespace net
32 33
33 #endif // NET_PROXY_PROXY_RESOLVER_MAC_H_ 34 #endif // NET_PROXY_PROXY_RESOLVER_MAC_H_
OLDNEW
« no previous file with comments | « net/proxy/proxy_resolver_factory_mojo.cc ('k') | net/proxy/proxy_resolver_perftest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698