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

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

Issue 2978001: Display the proxy PAC javascript errors in the NetLog.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Address wtc's comment -- rename to PAC_JAVASCRIPT_* 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/multi_threaded_proxy_resolver.h ('k') | net/proxy/proxy_resolver_js_bindings.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) 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 #include "net/proxy/multi_threaded_proxy_resolver.h" 5 #include "net/proxy/multi_threaded_proxy_resolver.h"
6 6
7 #include "base/stl_util-inl.h" 7 #include "base/stl_util-inl.h"
8 #include "base/string_util.h" 8 #include "base/string_util.h"
9 #include "base/waitable_event.h" 9 #include "base/waitable_event.h"
10 #include "googleurl/src/gurl.h" 10 #include "googleurl/src/gurl.h"
(...skipping 28 matching lines...) Expand all
39 const BoundNetLog& net_log) { 39 const BoundNetLog& net_log) {
40 if (resolve_latency_ms_) 40 if (resolve_latency_ms_)
41 PlatformThread::Sleep(resolve_latency_ms_); 41 PlatformThread::Sleep(resolve_latency_ms_);
42 42
43 CheckIsOnWorkerThread(); 43 CheckIsOnWorkerThread();
44 44
45 EXPECT_TRUE(callback == NULL); 45 EXPECT_TRUE(callback == NULL);
46 EXPECT_TRUE(request == NULL); 46 EXPECT_TRUE(request == NULL);
47 47
48 // Write something into |net_log| (doesn't really have any meaning.) 48 // Write something into |net_log| (doesn't really have any meaning.)
49 net_log.BeginEvent(NetLog::TYPE_PROXY_RESOLVER_V8_DNS_RESOLVE, NULL); 49 net_log.BeginEvent(NetLog::TYPE_PAC_JAVASCRIPT_DNS_RESOLVE, NULL);
50 50
51 results->UseNamedProxy(query_url.host()); 51 results->UseNamedProxy(query_url.host());
52 52
53 // Return a success code which represents the request's order. 53 // Return a success code which represents the request's order.
54 return request_count_++; 54 return request_count_++;
55 } 55 }
56 56
57 virtual void CancelRequest(RequestHandle request) { 57 virtual void CancelRequest(RequestHandle request) {
58 NOTREACHED(); 58 NOTREACHED();
59 } 59 }
(...skipping 673 matching lines...) Expand 10 before | Expand all | Expand 10 after
733 // All in all, the first thread should have seen just 1 request. And the 733 // All in all, the first thread should have seen just 1 request. And the
734 // second thread 3 requests. 734 // second thread 3 requests.
735 ASSERT_EQ(2u, factory->resolvers().size()); 735 ASSERT_EQ(2u, factory->resolvers().size());
736 EXPECT_EQ(1, factory->resolvers()[0]->request_count()); 736 EXPECT_EQ(1, factory->resolvers()[0]->request_count());
737 EXPECT_EQ(3, factory->resolvers()[1]->request_count()); 737 EXPECT_EQ(3, factory->resolvers()[1]->request_count());
738 } 738 }
739 739
740 } // namespace 740 } // namespace
741 741
742 } // namespace net 742 } // namespace net
OLDNEW
« no previous file with comments | « net/proxy/multi_threaded_proxy_resolver.h ('k') | net/proxy/proxy_resolver_js_bindings.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698