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 | |
|
bengr
2016/02/26 22:53:57
Add a period here and below.
RyanSturm
2016/03/01 19:36:04
Done.
| |
| 295 IPC_STRUCT_MEMBER(bool, is_using_lofi) | |
| 296 | |
| 297 // True if DataReductionProxy was used for this navigation | |
| 298 IPC_STRUCT_MEMBER(bool, was_fetched_via_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 1129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1432 IPC_MESSAGE_ROUTED3(FrameHostMsg_FindMatchRects_Reply, | 1438 IPC_MESSAGE_ROUTED3(FrameHostMsg_FindMatchRects_Reply, |
| 1433 int /* version */, | 1439 int /* version */, |
| 1434 std::vector<gfx::RectF> /* rects */, | 1440 std::vector<gfx::RectF> /* rects */, |
| 1435 gfx::RectF /* active_rect */) | 1441 gfx::RectF /* active_rect */) |
| 1436 #endif | 1442 #endif |
| 1437 | 1443 |
| 1438 // Adding a new message? Stick to the sort order above: first platform | 1444 // Adding a new message? Stick to the sort order above: first platform |
| 1439 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then | 1445 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then |
| 1440 // platform independent FrameHostMsg, then ifdefs for platform specific | 1446 // platform independent FrameHostMsg, then ifdefs for platform specific |
| 1441 // FrameHostMsg. | 1447 // FrameHostMsg. |
| OLD | NEW |