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

Unified Diff: net/base/net_log_event_type_list.h

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/base/net_log.h ('k') | net/net.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/base/net_log_event_type_list.h
===================================================================
--- net/base/net_log_event_type_list.h (revision 52046)
+++ net/base/net_log_event_type_list.h (working copy)
@@ -99,17 +99,33 @@
// ------------------------------------------------------------------------
// Measures the time taken to execute the "myIpAddress()" javascript binding.
-EVENT_TYPE(PROXY_RESOLVER_V8_MY_IP_ADDRESS)
+EVENT_TYPE(PAC_JAVASCRIPT_MY_IP_ADDRESS)
// Measures the time taken to execute the "myIpAddressEx()" javascript binding.
-EVENT_TYPE(PROXY_RESOLVER_V8_MY_IP_ADDRESS_EX)
+EVENT_TYPE(PAC_JAVASCRIPT_MY_IP_ADDRESS_EX)
// Measures the time taken to execute the "dnsResolve()" javascript binding.
-EVENT_TYPE(PROXY_RESOLVER_V8_DNS_RESOLVE)
+EVENT_TYPE(PAC_JAVASCRIPT_DNS_RESOLVE)
// Measures the time taken to execute the "dnsResolveEx()" javascript binding.
-EVENT_TYPE(PROXY_RESOLVER_V8_DNS_RESOLVE_EX)
+EVENT_TYPE(PAC_JAVASCRIPT_DNS_RESOLVE_EX)
+// This event is emitted when a javascript error has been triggered by a
+// PAC script. It contains the following event parameters:
+// {
+// "line_number": <The line number in the PAC script
+// (or -1 if not applicable)>,
+// "message": <The error message>
+// }
+EVENT_TYPE(PAC_JAVASCRIPT_ERROR)
+
+// This event is emitted when a PAC script called alert(). It contains the
+// following event parameters:
+// {
+// "message": <The string of the alert>
+// }
+EVENT_TYPE(PAC_JAVASCRIPT_ALERT)
+
// Measures the time that a proxy resolve request was stalled waiting for a
// proxy resolver thread to free-up.
EVENT_TYPE(WAITING_FOR_PROXY_RESOLVER_THREAD)
« no previous file with comments | « net/base/net_log.h ('k') | net/net.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698