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

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

Issue 8373014: Add new text for indicating we are resolving hosts during proxy resolution. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Address eroman's nits. Created 9 years, 1 month 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_mac.h ('k') | net/proxy/proxy_resolver_v8.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) 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 #include "net/proxy/proxy_resolver_mac.h" 5 #include "net/proxy/proxy_resolver_mac.h"
6 6
7 #include <CoreFoundation/CoreFoundation.h> 7 #include <CoreFoundation/CoreFoundation.h>
8 #include <CoreServices/CoreServices.h> 8 #include <CoreServices/CoreServices.h>
9 9
10 #include "base/logging.h" 10 #include "base/logging.h"
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after
180 results->UseNamedProxy(proxy_uri_list); 180 results->UseNamedProxy(proxy_uri_list);
181 // Else do nothing (results is already guaranteed to be in the default state). 181 // Else do nothing (results is already guaranteed to be in the default state).
182 182
183 return OK; 183 return OK;
184 } 184 }
185 185
186 void ProxyResolverMac::CancelRequest(RequestHandle request) { 186 void ProxyResolverMac::CancelRequest(RequestHandle request) {
187 NOTREACHED(); 187 NOTREACHED();
188 } 188 }
189 189
190 LoadState ProxyResolverMac::GetLoadState(RequestHandle request) const {
191 NOTREACHED();
192 return LOAD_STATE_IDLE;
193 }
194
195 LoadState ProxyResolverMac::GetLoadStateThreadSafe(
196 RequestHandle request) const {
197 return LOAD_STATE_IDLE;
198 }
199
190 void ProxyResolverMac::CancelSetPacScript() { 200 void ProxyResolverMac::CancelSetPacScript() {
191 NOTREACHED(); 201 NOTREACHED();
192 } 202 }
193 203
194 int ProxyResolverMac::SetPacScript( 204 int ProxyResolverMac::SetPacScript(
195 const scoped_refptr<ProxyResolverScriptData>& script_data, 205 const scoped_refptr<ProxyResolverScriptData>& script_data,
196 OldCompletionCallback* /*callback*/) { 206 OldCompletionCallback* /*callback*/) {
197 script_data_ = script_data; 207 script_data_ = script_data;
198 return OK; 208 return OK;
199 } 209 }
200 210
201 } // namespace net 211 } // namespace net
OLDNEW
« no previous file with comments | « net/proxy/proxy_resolver_mac.h ('k') | net/proxy/proxy_resolver_v8.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698