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

Unified Diff: chrome/common/render_messages.h

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
Index: chrome/common/render_messages.h
===================================================================
--- chrome/common/render_messages.h (revision 50874)
+++ chrome/common/render_messages.h (working copy)
@@ -1366,6 +1366,7 @@
WriteParam(m, p.appcache_manifest_url);
WriteParam(m, p.was_fetched_via_spdy);
WriteParam(m, p.was_npn_negotiated);
+ WriteParam(m, p.was_alternate_protocol_available);
WriteParam(m, p.was_fetched_via_proxy);
}
static bool Read(const Message* m, void** iter, param_type* r) {
@@ -1381,6 +1382,7 @@
ReadParam(m, iter, &r->appcache_manifest_url) &&
ReadParam(m, iter, &r->was_fetched_via_spdy) &&
ReadParam(m, iter, &r->was_npn_negotiated) &&
+ ReadParam(m, iter, &r->was_alternate_protocol_available) &&
ReadParam(m, iter, &r->was_fetched_via_proxy);
}
static void Log(const param_type& p, std::wstring* l) {
@@ -1407,6 +1409,8 @@
l->append(L", ");
LogParam(p.was_npn_negotiated, l);
l->append(L", ");
+ LogParam(p.was_alternate_protocol_available, l);
+ l->append(L", ");
LogParam(p.was_fetched_via_proxy, l);
l->append(L")");
}
« no previous file with comments | « chrome/browser/renderer_host/resource_dispatcher_host.cc ('k') | chrome/renderer/loadtimes_extension_bindings.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698