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

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

Issue 2501343003: PlzNavigate: AppCache support. (Closed)
Patch Set: Add DCHECKs for PlzNavigate and fix a double Release problem which caused one unit_test to fail wit… Created 4 years, 1 month 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 <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 367 matching lines...) Expand 10 before | Expand all | Expand 10 after
378 IPC_STRUCT_TRAITS_MEMBER(intended_as_new_entry) 378 IPC_STRUCT_TRAITS_MEMBER(intended_as_new_entry)
379 IPC_STRUCT_TRAITS_MEMBER(pending_history_list_offset) 379 IPC_STRUCT_TRAITS_MEMBER(pending_history_list_offset)
380 IPC_STRUCT_TRAITS_MEMBER(current_history_list_offset) 380 IPC_STRUCT_TRAITS_MEMBER(current_history_list_offset)
381 IPC_STRUCT_TRAITS_MEMBER(current_history_list_length) 381 IPC_STRUCT_TRAITS_MEMBER(current_history_list_length)
382 IPC_STRUCT_TRAITS_MEMBER(is_view_source) 382 IPC_STRUCT_TRAITS_MEMBER(is_view_source)
383 IPC_STRUCT_TRAITS_MEMBER(should_clear_history_list) 383 IPC_STRUCT_TRAITS_MEMBER(should_clear_history_list)
384 IPC_STRUCT_TRAITS_MEMBER(should_create_service_worker) 384 IPC_STRUCT_TRAITS_MEMBER(should_create_service_worker)
385 IPC_STRUCT_TRAITS_MEMBER(navigation_timing) 385 IPC_STRUCT_TRAITS_MEMBER(navigation_timing)
386 IPC_STRUCT_TRAITS_MEMBER(service_worker_provider_id) 386 IPC_STRUCT_TRAITS_MEMBER(service_worker_provider_id)
387 IPC_STRUCT_TRAITS_MEMBER(has_user_gesture) 387 IPC_STRUCT_TRAITS_MEMBER(has_user_gesture)
388 IPC_STRUCT_TRAITS_MEMBER(appcache_host_id)
388 #if defined(OS_ANDROID) 389 #if defined(OS_ANDROID)
389 IPC_STRUCT_TRAITS_MEMBER(data_url_as_string) 390 IPC_STRUCT_TRAITS_MEMBER(data_url_as_string)
390 #endif 391 #endif
391 IPC_STRUCT_TRAITS_END() 392 IPC_STRUCT_TRAITS_END()
392 393
393 IPC_STRUCT_TRAITS_BEGIN(content::FrameReplicationState) 394 IPC_STRUCT_TRAITS_BEGIN(content::FrameReplicationState)
394 IPC_STRUCT_TRAITS_MEMBER(origin) 395 IPC_STRUCT_TRAITS_MEMBER(origin)
395 IPC_STRUCT_TRAITS_MEMBER(sandbox_flags) 396 IPC_STRUCT_TRAITS_MEMBER(sandbox_flags)
396 IPC_STRUCT_TRAITS_MEMBER(name) 397 IPC_STRUCT_TRAITS_MEMBER(name)
397 IPC_STRUCT_TRAITS_MEMBER(unique_name) 398 IPC_STRUCT_TRAITS_MEMBER(unique_name)
(...skipping 1115 matching lines...) Expand 10 before | Expand all | Expand 10 after
1513 // nearest find result in the sending frame. 1514 // nearest find result in the sending frame.
1514 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply, 1515 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply,
1515 int /* nfr_request_id */, 1516 int /* nfr_request_id */,
1516 float /* distance */) 1517 float /* distance */)
1517 #endif 1518 #endif
1518 1519
1519 // Adding a new message? Stick to the sort order above: first platform 1520 // Adding a new message? Stick to the sort order above: first platform
1520 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then 1521 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then
1521 // platform independent FrameHostMsg, then ifdefs for platform specific 1522 // platform independent FrameHostMsg, then ifdefs for platform specific
1522 // FrameHostMsg. 1523 // FrameHostMsg.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698