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

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

Issue 2945004: Revert 51877, since SpdyNetworkTransactionTest.CorruptFrameSessionError start... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « net/proxy/proxy_resolver_js_bindings.cc ('k') | net/proxy/proxy_resolver_v8.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) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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_V8_H_ 5 #ifndef NET_PROXY_PROXY_RESOLVER_V8_H_
6 #define NET_PROXY_PROXY_RESOLVER_V8_H_ 6 #define NET_PROXY_PROXY_RESOLVER_V8_H_
7 7
8 #include "base/scoped_ptr.h" 8 #include "base/scoped_ptr.h"
9 #include "net/proxy/proxy_resolver.h" 9 #include "net/proxy/proxy_resolver.h"
10 10
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 virtual ~ProxyResolverV8(); 43 virtual ~ProxyResolverV8();
44 44
45 // ProxyResolver implementation: 45 // ProxyResolver implementation:
46 virtual int GetProxyForURL(const GURL& url, 46 virtual int GetProxyForURL(const GURL& url,
47 ProxyInfo* results, 47 ProxyInfo* results,
48 CompletionCallback* /*callback*/, 48 CompletionCallback* /*callback*/,
49 RequestHandle* /*request*/, 49 RequestHandle* /*request*/,
50 const BoundNetLog& net_log); 50 const BoundNetLog& net_log);
51 virtual void CancelRequest(RequestHandle request); 51 virtual void CancelRequest(RequestHandle request);
52 virtual void PurgeMemory(); 52 virtual void PurgeMemory();
53 virtual void Shutdown();
54 53
55 ProxyResolverJSBindings* js_bindings() const { return js_bindings_.get(); } 54 ProxyResolverJSBindings* js_bindings() const { return js_bindings_.get(); }
56 55
57 private: 56 private:
58 // Context holds the Javascript state for the most recently loaded PAC 57 // Context holds the Javascript state for the most recently loaded PAC
59 // script. It corresponds with the data from the last call to 58 // script. It corresponds with the data from the last call to
60 // SetPacScript(). 59 // SetPacScript().
61 class Context; 60 class Context;
62 61
63 // ProxyResolver implementation: 62 // ProxyResolver implementation:
64 virtual int SetPacScript(const GURL& /*pac_url*/, 63 virtual int SetPacScript(const GURL& /*pac_url*/,
65 const string16& pac_script, 64 const string16& pac_script,
66 CompletionCallback* /*callback*/); 65 CompletionCallback* /*callback*/);
67 scoped_ptr<Context> context_; 66 scoped_ptr<Context> context_;
68 67
69 scoped_ptr<ProxyResolverJSBindings> js_bindings_; 68 scoped_ptr<ProxyResolverJSBindings> js_bindings_;
70 69
71 DISALLOW_COPY_AND_ASSIGN(ProxyResolverV8); 70 DISALLOW_COPY_AND_ASSIGN(ProxyResolverV8);
72 }; 71 };
73 72
74 } // namespace net 73 } // namespace net
75 74
76 #endif // NET_PROXY_PROXY_RESOLVER_V8_H_ 75 #endif // NET_PROXY_PROXY_RESOLVER_V8_H_
OLDNEW
« no previous file with comments | « net/proxy/proxy_resolver_js_bindings.cc ('k') | net/proxy/proxy_resolver_v8.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698