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

Unified Diff: net/proxy/proxy_resolver_v8.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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/proxy/proxy_resolver_perftest.cc ('k') | net/proxy/proxy_resolver_v8_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/proxy/proxy_resolver_v8.cc
===================================================================
--- net/proxy/proxy_resolver_v8.cc (revision 52046)
+++ net/proxy/proxy_resolver_v8.cc (working copy)
@@ -455,19 +455,9 @@
{
v8::Unlocker unlocker;
- LogEventToCurrentRequest(context,
- NetLog::PHASE_BEGIN,
- NetLog::TYPE_PROXY_RESOLVER_V8_MY_IP_ADDRESS,
- NULL);
-
// We shouldn't be called with any arguments, but will not complain if
// we are.
success = context->js_bindings_->MyIpAddress(&result);
-
- LogEventToCurrentRequest(context,
- NetLog::PHASE_END,
- NetLog::TYPE_PROXY_RESOLVER_V8_MY_IP_ADDRESS,
- NULL);
}
if (!success)
@@ -487,19 +477,9 @@
{
v8::Unlocker unlocker;
- LogEventToCurrentRequest(context,
- NetLog::PHASE_BEGIN,
- NetLog::TYPE_PROXY_RESOLVER_V8_MY_IP_ADDRESS_EX,
- NULL);
-
// We shouldn't be called with any arguments, but will not complain if
// we are.
success = context->js_bindings_->MyIpAddressEx(&ip_address_list);
-
- LogEventToCurrentRequest(context,
- NetLog::PHASE_END,
- NetLog::TYPE_PROXY_RESOLVER_V8_MY_IP_ADDRESS_EX,
- NULL);
}
if (!success)
@@ -522,18 +502,7 @@
{
v8::Unlocker unlocker;
-
- LogEventToCurrentRequest(context,
- NetLog::PHASE_BEGIN,
- NetLog::TYPE_PROXY_RESOLVER_V8_DNS_RESOLVE,
- NULL);
-
success = context->js_bindings_->DnsResolve(hostname, &ip_address);
-
- LogEventToCurrentRequest(context,
- NetLog::PHASE_END,
- NetLog::TYPE_PROXY_RESOLVER_V8_DNS_RESOLVE,
- NULL);
}
return success ? ASCIIStringToV8String(ip_address) : v8::Null();
@@ -554,19 +523,8 @@
{
v8::Unlocker unlocker;
-
- LogEventToCurrentRequest(context,
- NetLog::PHASE_BEGIN,
- NetLog::TYPE_PROXY_RESOLVER_V8_DNS_RESOLVE_EX,
- NULL);
-
success = context->js_bindings_->DnsResolveEx(hostname,
&ip_address_list);
-
- LogEventToCurrentRequest(context,
- NetLog::PHASE_END,
- NetLog::TYPE_PROXY_RESOLVER_V8_DNS_RESOLVE_EX,
- NULL);
}
if (!success)
@@ -575,16 +533,6 @@
return ASCIIStringToV8String(ip_address_list);
}
- static void LogEventToCurrentRequest(Context* context,
- NetLog::EventPhase phase,
- NetLog::EventType type,
- NetLog::EventParameters* params) {
- if (context->js_bindings_->current_request_context()) {
- context->js_bindings_->current_request_context()->net_log->AddEntry(
- type, phase, params);
- }
- }
-
ProxyResolverJSBindings* js_bindings_;
v8::Persistent<v8::External> v8_this_;
v8::Persistent<v8::Context> v8_context_;
« no previous file with comments | « net/proxy/proxy_resolver_perftest.cc ('k') | net/proxy/proxy_resolver_v8_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698