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

Side by Side Diff: webkit/tools/test_shell/simple_resource_loader_bridge.cc

Issue 126303: Add a "LoadLog*" parameter to transactions, hostresolver, clientsocketpool. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: sync again Created 11 years, 4 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/url_request/url_request_new_ftp_job.cc ('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 (c) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 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 // This file contains an implementation of the ResourceLoaderBridge class. 5 // This file contains an implementation of the ResourceLoaderBridge class.
6 // The class is implemented using URLRequest, meaning it is a "simple" version 6 // The class is implemented using URLRequest, meaning it is a "simple" version
7 // that directly issues requests. The more complicated one used in the 7 // that directly issues requests. The more complicated one used in the
8 // browser uses IPC. 8 // browser uses IPC.
9 // 9 //
10 // Because URLRequest only provides an asynchronous resource loading API, this 10 // Because URLRequest only provides an asynchronous resource loading API, this
(...skipping 610 matching lines...) Expand 10 before | Expand all | Expand 10 after
621 // Issue the proxy resolve request on the io thread, and wait 621 // Issue the proxy resolve request on the io thread, and wait
622 // for the result. 622 // for the result.
623 bool FindProxyForUrl(const GURL& url, std::string* proxy_list) { 623 bool FindProxyForUrl(const GURL& url, std::string* proxy_list) {
624 DCHECK(request_context); 624 DCHECK(request_context);
625 625
626 scoped_refptr<net::SyncProxyServiceHelper> sync_proxy_service( 626 scoped_refptr<net::SyncProxyServiceHelper> sync_proxy_service(
627 new net::SyncProxyServiceHelper(io_thread->message_loop(), 627 new net::SyncProxyServiceHelper(io_thread->message_loop(),
628 request_context->proxy_service())); 628 request_context->proxy_service()));
629 629
630 net::ProxyInfo proxy_info; 630 net::ProxyInfo proxy_info;
631 int rv = sync_proxy_service->ResolveProxy(url, &proxy_info); 631 int rv = sync_proxy_service->ResolveProxy(NULL, url, &proxy_info);
632 if (rv == net::OK) { 632 if (rv == net::OK) {
633 *proxy_list = proxy_info.ToPacString(); 633 *proxy_list = proxy_info.ToPacString();
634 } 634 }
635 635
636 return rv == net::OK; 636 return rv == net::OK;
637 } 637 }
638 638
639 } // namespace webkit_glue 639 } // namespace webkit_glue
640 640
641 //----------------------------------------------------------------------------- 641 //-----------------------------------------------------------------------------
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
688 return std::string(); 688 return std::string();
689 } 689 }
690 690
691 scoped_refptr<CookieGetter> getter = new CookieGetter(); 691 scoped_refptr<CookieGetter> getter = new CookieGetter();
692 692
693 io_thread->message_loop()->PostTask(FROM_HERE, NewRunnableMethod( 693 io_thread->message_loop()->PostTask(FROM_HERE, NewRunnableMethod(
694 getter.get(), &CookieGetter::Get, url)); 694 getter.get(), &CookieGetter::Get, url));
695 695
696 return getter->GetResult(); 696 return getter->GetResult();
697 } 697 }
OLDNEW
« no previous file with comments | « net/url_request/url_request_new_ftp_job.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698