Chromium Code Reviews| 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) |