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

Unified Diff: chrome/renderer/loadtimes_extension_bindings.cc

Issue 2808010: Add field trial stats for alternate_protocol. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 6 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 | « chrome/common/render_messages.h ('k') | chrome/renderer/navigation_state.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/loadtimes_extension_bindings.cc
===================================================================
--- chrome/renderer/loadtimes_extension_bindings.cc (revision 50874)
+++ chrome/renderer/loadtimes_extension_bindings.cc (working copy)
@@ -134,6 +134,10 @@
load_times->Set(
v8::String::New("wasNpnNegotiated"),
v8::Boolean::New(navigation_state->was_npn_negotiated()));
+ load_times->Set(
+ v8::String::New("wasAlternateProtocolAvailable"),
+ v8::Boolean::New(
+ navigation_state->was_alternate_protocol_available()));
return load_times;
}
}
« no previous file with comments | « chrome/common/render_messages.h ('k') | chrome/renderer/navigation_state.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698