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

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

Issue 10544175: Add an ability to call WebKit's WebFrame::loadData via NavigationController. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Comments addressed Created 8 years, 6 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 page rendering. 5 // IPC messages for page rendering.
6 // Multiply-included message file, hence no include guard. 6 // Multiply-included message file, hence no include guard.
7 7
8 #include "base/process.h" 8 #include "base/process.h"
9 #include "base/shared_memory.h" 9 #include "base/shared_memory.h"
10 #include "content/common/content_export.h" 10 #include "content/common/content_export.h"
(...skipping 600 matching lines...) Expand 10 before | Expand all | Expand 10 after
611 IPC_STRUCT_MEMBER(int, pending_history_list_offset) 611 IPC_STRUCT_MEMBER(int, pending_history_list_offset)
612 612
613 // Informs the RenderView of where its current page contents reside in 613 // Informs the RenderView of where its current page contents reside in
614 // session history and the total size of the session history list. 614 // session history and the total size of the session history list.
615 IPC_STRUCT_MEMBER(int, current_history_list_offset) 615 IPC_STRUCT_MEMBER(int, current_history_list_offset)
616 IPC_STRUCT_MEMBER(int, current_history_list_length) 616 IPC_STRUCT_MEMBER(int, current_history_list_length)
617 617
618 // The URL to load. 618 // The URL to load.
619 IPC_STRUCT_MEMBER(GURL, url) 619 IPC_STRUCT_MEMBER(GURL, url)
620 620
621 // Base URL for using in WebKit's SubstituteData.
622 // Is only used with data: URLs.
623 IPC_STRUCT_MEMBER(GURL, base_url_for_data)
624
625 // History URL for using in WebKit's SubstituteData.
626 // Is only used with data: URLs.
627 IPC_STRUCT_MEMBER(GURL, history_url_for_data)
628
621 // The URL to send in the "Referer" header field. Can be empty if there is 629 // The URL to send in the "Referer" header field. Can be empty if there is
622 // no referrer. 630 // no referrer.
623 IPC_STRUCT_MEMBER(content::Referrer, referrer) 631 IPC_STRUCT_MEMBER(content::Referrer, referrer)
624 632
625 // The type of transition. 633 // The type of transition.
626 IPC_STRUCT_MEMBER(content::PageTransition, transition) 634 IPC_STRUCT_MEMBER(content::PageTransition, transition)
627 635
628 // Opaque history state (received by ViewHostMsg_UpdateState). 636 // Opaque history state (received by ViewHostMsg_UpdateState).
629 IPC_STRUCT_MEMBER(std::string, state) 637 IPC_STRUCT_MEMBER(std::string, state)
630 638
(...skipping 1477 matching lines...) Expand 10 before | Expand all | Expand 10 after
2108 // (according to the value of is_hung). The browser can give the user the 2116 // (according to the value of is_hung). The browser can give the user the
2109 // option of killing the plugin. 2117 // option of killing the plugin.
2110 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung, 2118 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung,
2111 int /* plugin_child_id */, 2119 int /* plugin_child_id */,
2112 FilePath /* path */, 2120 FilePath /* path */,
2113 bool /* is_hung */) 2121 bool /* is_hung */)
2114 2122
2115 // Screen was rotated. Dispatched to the onorientationchange javascript API. 2123 // Screen was rotated. Dispatched to the onorientationchange javascript API.
2116 IPC_MESSAGE_ROUTED1(ViewMsg_OrientationChangeEvent, 2124 IPC_MESSAGE_ROUTED1(ViewMsg_OrientationChangeEvent,
2117 int /* orientation */) 2125 int /* orientation */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698