Chromium Code Reviews| Index: content/common/frame_messages.h |
| diff --git a/content/common/frame_messages.h b/content/common/frame_messages.h |
| index 3ff197e843560cfac87e42374441834c21ed9ba6..b53ba9d44efb76c88ca71c0aaca5b488a9288ef2 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 |
|
bengr
2016/02/26 22:53:57
Add a period here and below.
RyanSturm
2016/03/01 19:36:04
Done.
|
| + IPC_STRUCT_MEMBER(bool, is_using_lofi) |
| + |
| + // True if DataReductionProxy was used for this navigation |
| + IPC_STRUCT_MEMBER(bool, was_fetched_via_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) |