Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // IPC messages for interacting with frames. | 5 // IPC messages for interacting with frames. |
| 6 // Multiply-included message file, hence no include guard. | 6 // Multiply-included message file, hence no include guard. |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 283 | 283 |
| 284 // Timestamp at which the UI action that triggered the navigation originated. | 284 // Timestamp at which the UI action that triggered the navigation originated. |
| 285 IPC_STRUCT_MEMBER(base::TimeTicks, ui_timestamp) | 285 IPC_STRUCT_MEMBER(base::TimeTicks, ui_timestamp) |
| 286 | 286 |
| 287 // True if the document for the load is enforcing strict mixed content | 287 // True if the document for the load is enforcing strict mixed content |
| 288 // checking. | 288 // checking. |
| 289 IPC_STRUCT_MEMBER(bool, should_enforce_strict_mixed_content_checking) | 289 IPC_STRUCT_MEMBER(bool, should_enforce_strict_mixed_content_checking) |
| 290 | 290 |
| 291 // True if the navigation originated as an srcdoc attribute. | 291 // True if the navigation originated as an srcdoc attribute. |
| 292 IPC_STRUCT_MEMBER(bool, is_srcdoc) | 292 IPC_STRUCT_MEMBER(bool, is_srcdoc) |
| 293 | |
| 294 // 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.
| |
| 295 IPC_STRUCT_MEMBER(bool, is_using_lofi) | |
| 296 | |
| 297 // True if the navigation was proxied through data reduction proxy. | |
| 298 IPC_STRUCT_MEMBER(bool, used_data_reduction_proxy) | |
| 293 IPC_STRUCT_END() | 299 IPC_STRUCT_END() |
| 294 | 300 |
| 295 IPC_STRUCT_BEGIN(FrameMsg_PostMessage_Params) | 301 IPC_STRUCT_BEGIN(FrameMsg_PostMessage_Params) |
| 296 // Whether the data format is supplied as serialized script value, or as | 302 // Whether the data format is supplied as serialized script value, or as |
| 297 // a simple string. If it is a raw string, must be converted from string to a | 303 // a simple string. If it is a raw string, must be converted from string to a |
| 298 // WebSerializedScriptValue in the renderer process. | 304 // WebSerializedScriptValue in the renderer process. |
| 299 IPC_STRUCT_MEMBER(bool, is_data_raw_string) | 305 IPC_STRUCT_MEMBER(bool, is_data_raw_string) |
| 300 | 306 |
| 301 // The serialized script value. | 307 // The serialized script value. |
| 302 IPC_STRUCT_MEMBER(base::string16, data) | 308 IPC_STRUCT_MEMBER(base::string16, data) |
| (...skipping 1134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1437 IPC_MESSAGE_ROUTED3(FrameHostMsg_FindMatchRects_Reply, | 1443 IPC_MESSAGE_ROUTED3(FrameHostMsg_FindMatchRects_Reply, |
| 1438 int /* version */, | 1444 int /* version */, |
| 1439 std::vector<gfx::RectF> /* rects */, | 1445 std::vector<gfx::RectF> /* rects */, |
| 1440 gfx::RectF /* active_rect */) | 1446 gfx::RectF /* active_rect */) |
| 1441 #endif | 1447 #endif |
| 1442 | 1448 |
| 1443 // Adding a new message? Stick to the sort order above: first platform | 1449 // Adding a new message? Stick to the sort order above: first platform |
| 1444 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then | 1450 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then |
| 1445 // platform independent FrameHostMsg, then ifdefs for platform specific | 1451 // platform independent FrameHostMsg, then ifdefs for platform specific |
| 1446 // FrameHostMsg. | 1452 // FrameHostMsg. |
| OLD | NEW |