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

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: Actually removed method decl from NavigationController interface Created 8 years, 5 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 604 matching lines...) Expand 10 before | Expand all | Expand 10 after
615 IPC_STRUCT_MEMBER(int, pending_history_list_offset) 615 IPC_STRUCT_MEMBER(int, pending_history_list_offset)
616 616
617 // Informs the RenderView of where its current page contents reside in 617 // Informs the RenderView of where its current page contents reside in
618 // session history and the total size of the session history list. 618 // session history and the total size of the session history list.
619 IPC_STRUCT_MEMBER(int, current_history_list_offset) 619 IPC_STRUCT_MEMBER(int, current_history_list_offset)
620 IPC_STRUCT_MEMBER(int, current_history_list_length) 620 IPC_STRUCT_MEMBER(int, current_history_list_length)
621 621
622 // The URL to load. 622 // The URL to load.
623 IPC_STRUCT_MEMBER(GURL, url) 623 IPC_STRUCT_MEMBER(GURL, url)
624 624
625 // Base URL for use in WebKit's SubstituteData.
626 // Is only used with data: URLs.
627 IPC_STRUCT_MEMBER(GURL, base_url_for_data_url)
628
629 // History URL for use in WebKit's SubstituteData.
630 // Is only used with data: URLs.
631 IPC_STRUCT_MEMBER(GURL, history_url_for_data_url)
632
625 // The URL to send in the "Referer" header field. Can be empty if there is 633 // The URL to send in the "Referer" header field. Can be empty if there is
626 // no referrer. 634 // no referrer.
627 IPC_STRUCT_MEMBER(content::Referrer, referrer) 635 IPC_STRUCT_MEMBER(content::Referrer, referrer)
628 636
629 // The type of transition. 637 // The type of transition.
630 IPC_STRUCT_MEMBER(content::PageTransition, transition) 638 IPC_STRUCT_MEMBER(content::PageTransition, transition)
631 639
632 // Opaque history state (received by ViewHostMsg_UpdateState). 640 // Opaque history state (received by ViewHostMsg_UpdateState).
633 IPC_STRUCT_MEMBER(std::string, state) 641 IPC_STRUCT_MEMBER(std::string, state)
634 642
(...skipping 1488 matching lines...) Expand 10 before | Expand all | Expand 10 after
2123 // (according to the value of is_hung). The browser can give the user the 2131 // (according to the value of is_hung). The browser can give the user the
2124 // option of killing the plugin. 2132 // option of killing the plugin.
2125 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung, 2133 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung,
2126 int /* plugin_child_id */, 2134 int /* plugin_child_id */,
2127 FilePath /* path */, 2135 FilePath /* path */,
2128 bool /* is_hung */) 2136 bool /* is_hung */)
2129 2137
2130 // Screen was rotated. Dispatched to the onorientationchange javascript API. 2138 // Screen was rotated. Dispatched to the onorientationchange javascript API.
2131 IPC_MESSAGE_ROUTED1(ViewMsg_OrientationChangeEvent, 2139 IPC_MESSAGE_ROUTED1(ViewMsg_OrientationChangeEvent,
2132 int /* orientation */) 2140 int /* orientation */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698