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

Side by Side Diff: content/common/frame_messages.h

Issue 1310743003: Consistently use LoFi for an entire page (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: addressing comments Created 5 years, 3 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 unified diff | Download patch
OLDNEW
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 "cc/surfaces/surface_id.h" 8 #include "cc/surfaces/surface_id.h"
9 #include "cc/surfaces/surface_sequence.h" 9 #include "cc/surfaces/surface_sequence.h"
10 #include "content/common/content_export.h" 10 #include "content/common/content_export.h"
(...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after
290 IPC_STRUCT_TRAITS_MEMBER(page_state) 290 IPC_STRUCT_TRAITS_MEMBER(page_state)
291 IPC_STRUCT_TRAITS_MEMBER(page_id) 291 IPC_STRUCT_TRAITS_MEMBER(page_id)
292 IPC_STRUCT_TRAITS_MEMBER(nav_entry_id) 292 IPC_STRUCT_TRAITS_MEMBER(nav_entry_id)
293 IPC_STRUCT_TRAITS_MEMBER(is_same_document_history_load) 293 IPC_STRUCT_TRAITS_MEMBER(is_same_document_history_load)
294 IPC_STRUCT_TRAITS_MEMBER(has_committed_real_load) 294 IPC_STRUCT_TRAITS_MEMBER(has_committed_real_load)
295 IPC_STRUCT_TRAITS_MEMBER(intended_as_new_entry) 295 IPC_STRUCT_TRAITS_MEMBER(intended_as_new_entry)
296 IPC_STRUCT_TRAITS_MEMBER(pending_history_list_offset) 296 IPC_STRUCT_TRAITS_MEMBER(pending_history_list_offset)
297 IPC_STRUCT_TRAITS_MEMBER(current_history_list_offset) 297 IPC_STRUCT_TRAITS_MEMBER(current_history_list_offset)
298 IPC_STRUCT_TRAITS_MEMBER(current_history_list_length) 298 IPC_STRUCT_TRAITS_MEMBER(current_history_list_length)
299 IPC_STRUCT_TRAITS_MEMBER(should_clear_history_list) 299 IPC_STRUCT_TRAITS_MEMBER(should_clear_history_list)
300 IPC_STRUCT_TRAITS_MEMBER(lofi_state)
300 IPC_STRUCT_TRAITS_END() 301 IPC_STRUCT_TRAITS_END()
301 302
302 IPC_STRUCT_TRAITS_BEGIN(content::FrameReplicationState) 303 IPC_STRUCT_TRAITS_BEGIN(content::FrameReplicationState)
303 IPC_STRUCT_TRAITS_MEMBER(origin) 304 IPC_STRUCT_TRAITS_MEMBER(origin)
304 IPC_STRUCT_TRAITS_MEMBER(sandbox_flags) 305 IPC_STRUCT_TRAITS_MEMBER(sandbox_flags)
305 IPC_STRUCT_TRAITS_MEMBER(name) 306 IPC_STRUCT_TRAITS_MEMBER(name)
306 IPC_STRUCT_TRAITS_END() 307 IPC_STRUCT_TRAITS_END()
307 308
308 IPC_STRUCT_BEGIN(FrameMsg_NewFrame_WidgetParams) 309 IPC_STRUCT_BEGIN(FrameMsg_NewFrame_WidgetParams)
309 // Gives the routing ID for the RenderWidget that will be attached to the 310 // Gives the routing ID for the RenderWidget that will be attached to the
(...skipping 713 matching lines...) Expand 10 before | Expand all | Expand 10 after
1023 FrameMsg_PostMessage_Params) 1024 FrameMsg_PostMessage_Params)
1024 1025
1025 #if defined(OS_MACOSX) || defined(OS_ANDROID) 1026 #if defined(OS_MACOSX) || defined(OS_ANDROID)
1026 1027
1027 // Message to show/hide a popup menu using native controls. 1028 // Message to show/hide a popup menu using native controls.
1028 IPC_MESSAGE_ROUTED1(FrameHostMsg_ShowPopup, 1029 IPC_MESSAGE_ROUTED1(FrameHostMsg_ShowPopup,
1029 FrameHostMsg_ShowPopup_Params) 1030 FrameHostMsg_ShowPopup_Params)
1030 IPC_MESSAGE_ROUTED0(FrameHostMsg_HidePopup) 1031 IPC_MESSAGE_ROUTED0(FrameHostMsg_HidePopup)
1031 1032
1032 #endif 1033 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698