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

Unified Diff: content/common/frame_messages.h

Issue 1721813002: Adding DRP specfic UMA for FirstContentfulPaint (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created a DRP PageLoadMetricsObserver Created 4 years, 10 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: content/common/frame_messages.h
diff --git a/content/common/frame_messages.h b/content/common/frame_messages.h
index ec76ea6950d62b451a19389e8e6763731af5b312..ef0ebe12912302047f3dc76358dec1e6b1c4f53b 100644
--- a/content/common/frame_messages.h
+++ b/content/common/frame_messages.h
@@ -283,20 +283,26 @@ IPC_STRUCT_BEGIN_WITH_PARENT(FrameHostMsg_DidCommitProvisionalLoad_Params,
// Timestamp at which the UI action that triggered the navigation originated.
IPC_STRUCT_MEMBER(base::TimeTicks, ui_timestamp)
// True if the document for the load is enforcing strict mixed content
// checking.
IPC_STRUCT_MEMBER(bool, should_enforce_strict_mixed_content_checking)
// True if the navigation originated as an srcdoc attribute.
IPC_STRUCT_MEMBER(bool, is_srcdoc)
+
+ // True if Lofi was on for this navigation.
tbansal1 2016/03/07 18:05:05 s/Lofi/LoFi/
RyanSturm 2016/03/08 19:47:43 Done.
+ IPC_STRUCT_MEMBER(bool, is_using_lofi)
+
+ // True if the navigation was proxied through data reduction proxy.
+ IPC_STRUCT_MEMBER(bool, used_data_reduction_proxy)
IPC_STRUCT_END()
IPC_STRUCT_BEGIN(FrameMsg_PostMessage_Params)
// Whether the data format is supplied as serialized script value, or as
// a simple string. If it is a raw string, must be converted from string to a
// WebSerializedScriptValue in the renderer process.
IPC_STRUCT_MEMBER(bool, is_data_raw_string)
// The serialized script value.
IPC_STRUCT_MEMBER(base::string16, data)

Powered by Google App Engine
This is Rietveld 408576698