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

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: Updated comments 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 599 matching lines...) Expand 10 before | Expand all | Expand 10 after
610 IPC_STRUCT_MEMBER(int, pending_history_list_offset) 610 IPC_STRUCT_MEMBER(int, pending_history_list_offset)
611 611
612 // Informs the RenderView of where its current page contents reside in 612 // Informs the RenderView of where its current page contents reside in
613 // session history and the total size of the session history list. 613 // session history and the total size of the session history list.
614 IPC_STRUCT_MEMBER(int, current_history_list_offset) 614 IPC_STRUCT_MEMBER(int, current_history_list_offset)
615 IPC_STRUCT_MEMBER(int, current_history_list_length) 615 IPC_STRUCT_MEMBER(int, current_history_list_length)
616 616
617 // The URL to load. 617 // The URL to load.
618 IPC_STRUCT_MEMBER(GURL, url) 618 IPC_STRUCT_MEMBER(GURL, url)
619 619
620 // Base URL for using in WebKit's SubstituteData.
Charlie Reis 2012/06/18 18:34:29 Please mention that these two are only needed for
mnaganov (inactive) 2012/06/19 12:52:32 Renamed to base_url_for_data
621 IPC_STRUCT_MEMBER(GURL, base_url)
622
623 // History URL for using in WebKit's SubstituteData.
Charlie Reis 2012/06/18 18:34:29 Again, display_url seems to convey what it's being
mnaganov (inactive) 2012/06/19 12:52:32 Changed to history_url_for_data
624 IPC_STRUCT_MEMBER(GURL, history_url)
625
620 // The URL to send in the "Referer" header field. Can be empty if there is 626 // The URL to send in the "Referer" header field. Can be empty if there is
621 // no referrer. 627 // no referrer.
622 IPC_STRUCT_MEMBER(content::Referrer, referrer) 628 IPC_STRUCT_MEMBER(content::Referrer, referrer)
623 629
624 // The type of transition. 630 // The type of transition.
625 IPC_STRUCT_MEMBER(content::PageTransition, transition) 631 IPC_STRUCT_MEMBER(content::PageTransition, transition)
626 632
627 // Opaque history state (received by ViewHostMsg_UpdateState). 633 // Opaque history state (received by ViewHostMsg_UpdateState).
628 IPC_STRUCT_MEMBER(std::string, state) 634 IPC_STRUCT_MEMBER(std::string, state)
629 635
(...skipping 1477 matching lines...) Expand 10 before | Expand all | Expand 10 after
2107 // (according to the value of is_hung). The browser can give the user the 2113 // (according to the value of is_hung). The browser can give the user the
2108 // option of killing the plugin. 2114 // option of killing the plugin.
2109 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung, 2115 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung,
2110 int /* plugin_child_id */, 2116 int /* plugin_child_id */,
2111 FilePath /* path */, 2117 FilePath /* path */,
2112 bool /* is_hung */) 2118 bool /* is_hung */)
2113 2119
2114 // Screen was rotated. Dispatched to the onorientationchange javascript API. 2120 // Screen was rotated. Dispatched to the onorientationchange javascript API.
2115 IPC_MESSAGE_ROUTED1(ViewMsg_OrientationChangeEvent, 2121 IPC_MESSAGE_ROUTED1(ViewMsg_OrientationChangeEvent,
2116 int /* orientation */) 2122 int /* orientation */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698