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

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

Issue 2501343003: PlzNavigate: AppCache support. (Closed)
Patch Set: Maintain a refcounted instance of ChromeAppCacheService in the AppCacheNavigationHandleCore instanc… Created 4 years 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 375 matching lines...) Expand 10 before | Expand all | Expand 10 after
386 IPC_STRUCT_TRAITS_MEMBER(intended_as_new_entry) 386 IPC_STRUCT_TRAITS_MEMBER(intended_as_new_entry)
387 IPC_STRUCT_TRAITS_MEMBER(pending_history_list_offset) 387 IPC_STRUCT_TRAITS_MEMBER(pending_history_list_offset)
388 IPC_STRUCT_TRAITS_MEMBER(current_history_list_offset) 388 IPC_STRUCT_TRAITS_MEMBER(current_history_list_offset)
389 IPC_STRUCT_TRAITS_MEMBER(current_history_list_length) 389 IPC_STRUCT_TRAITS_MEMBER(current_history_list_length)
390 IPC_STRUCT_TRAITS_MEMBER(is_view_source) 390 IPC_STRUCT_TRAITS_MEMBER(is_view_source)
391 IPC_STRUCT_TRAITS_MEMBER(should_clear_history_list) 391 IPC_STRUCT_TRAITS_MEMBER(should_clear_history_list)
392 IPC_STRUCT_TRAITS_MEMBER(should_create_service_worker) 392 IPC_STRUCT_TRAITS_MEMBER(should_create_service_worker)
393 IPC_STRUCT_TRAITS_MEMBER(navigation_timing) 393 IPC_STRUCT_TRAITS_MEMBER(navigation_timing)
394 IPC_STRUCT_TRAITS_MEMBER(service_worker_provider_id) 394 IPC_STRUCT_TRAITS_MEMBER(service_worker_provider_id)
395 IPC_STRUCT_TRAITS_MEMBER(has_user_gesture) 395 IPC_STRUCT_TRAITS_MEMBER(has_user_gesture)
396 IPC_STRUCT_TRAITS_MEMBER(appcache_host_id)
396 #if defined(OS_ANDROID) 397 #if defined(OS_ANDROID)
397 IPC_STRUCT_TRAITS_MEMBER(data_url_as_string) 398 IPC_STRUCT_TRAITS_MEMBER(data_url_as_string)
398 #endif 399 #endif
399 IPC_STRUCT_TRAITS_END() 400 IPC_STRUCT_TRAITS_END()
400 401
401 IPC_STRUCT_TRAITS_BEGIN(content::FrameReplicationState) 402 IPC_STRUCT_TRAITS_BEGIN(content::FrameReplicationState)
402 IPC_STRUCT_TRAITS_MEMBER(origin) 403 IPC_STRUCT_TRAITS_MEMBER(origin)
403 IPC_STRUCT_TRAITS_MEMBER(sandbox_flags) 404 IPC_STRUCT_TRAITS_MEMBER(sandbox_flags)
404 IPC_STRUCT_TRAITS_MEMBER(name) 405 IPC_STRUCT_TRAITS_MEMBER(name)
405 IPC_STRUCT_TRAITS_MEMBER(unique_name) 406 IPC_STRUCT_TRAITS_MEMBER(unique_name)
(...skipping 1132 matching lines...) Expand 10 before | Expand all | Expand 10 after
1538 // nearest find result in the sending frame. 1539 // nearest find result in the sending frame.
1539 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply, 1540 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply,
1540 int /* nfr_request_id */, 1541 int /* nfr_request_id */,
1541 float /* distance */) 1542 float /* distance */)
1542 #endif 1543 #endif
1543 1544
1544 // Adding a new message? Stick to the sort order above: first platform 1545 // Adding a new message? Stick to the sort order above: first platform
1545 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then 1546 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then
1546 // platform independent FrameHostMsg, then ifdefs for platform specific 1547 // platform independent FrameHostMsg, then ifdefs for platform specific
1547 // FrameHostMsg. 1548 // FrameHostMsg.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698