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

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

Issue 10704048: [RDS] Reloads a page using the original request URL (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Rebase fix Created 8 years, 4 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
« no previous file with comments | « content/common/view_message_enums.h ('k') | content/public/browser/navigation_controller.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 459 matching lines...) Expand 10 before | Expand all | Expand 10 after
470 // The status code of the HTTP request. 470 // The status code of the HTTP request.
471 IPC_STRUCT_MEMBER(int, http_status_code) 471 IPC_STRUCT_MEMBER(int, http_status_code)
472 472
473 // True if the connection was proxied. In this case, socket_address 473 // True if the connection was proxied. In this case, socket_address
474 // will represent the address of the proxy, rather than the remote host. 474 // will represent the address of the proxy, rather than the remote host.
475 IPC_STRUCT_MEMBER(bool, was_fetched_via_proxy) 475 IPC_STRUCT_MEMBER(bool, was_fetched_via_proxy)
476 476
477 // Serialized history item state to store in the navigation entry. 477 // Serialized history item state to store in the navigation entry.
478 IPC_STRUCT_MEMBER(std::string, content_state) 478 IPC_STRUCT_MEMBER(std::string, content_state)
479 479
480 // Original request's URL.
481 IPC_STRUCT_MEMBER(GURL, original_request_url)
482
480 // User agent override used to navigate. 483 // User agent override used to navigate.
481 IPC_STRUCT_MEMBER(bool, is_overriding_user_agent) 484 IPC_STRUCT_MEMBER(bool, is_overriding_user_agent)
482 IPC_STRUCT_END() 485 IPC_STRUCT_END()
483 486
484 // This message is used for supporting popup menus on Mac OS X using native 487 // This message is used for supporting popup menus on Mac OS X using native
485 // Cocoa controls. The renderer sends us this message which we use to populate 488 // Cocoa controls. The renderer sends us this message which we use to populate
486 // the popup menu. 489 // the popup menu.
487 IPC_STRUCT_BEGIN(ViewHostMsg_ShowPopup_Params) 490 IPC_STRUCT_BEGIN(ViewHostMsg_ShowPopup_Params)
488 // Position on the screen. 491 // Position on the screen.
489 IPC_STRUCT_MEMBER(gfx::Rect, bounds) 492 IPC_STRUCT_MEMBER(gfx::Rect, bounds)
(...skipping 1688 matching lines...) Expand 10 before | Expand all | Expand 10 after
2178 // (according to the value of is_hung). The browser can give the user the 2181 // (according to the value of is_hung). The browser can give the user the
2179 // option of killing the plugin. 2182 // option of killing the plugin.
2180 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung, 2183 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung,
2181 int /* plugin_child_id */, 2184 int /* plugin_child_id */,
2182 FilePath /* path */, 2185 FilePath /* path */,
2183 bool /* is_hung */) 2186 bool /* is_hung */)
2184 2187
2185 // Screen was rotated. Dispatched to the onorientationchange javascript API. 2188 // Screen was rotated. Dispatched to the onorientationchange javascript API.
2186 IPC_MESSAGE_ROUTED1(ViewMsg_OrientationChangeEvent, 2189 IPC_MESSAGE_ROUTED1(ViewMsg_OrientationChangeEvent,
2187 int /* orientation */) 2190 int /* orientation */)
OLDNEW
« no previous file with comments | « content/common/view_message_enums.h ('k') | content/public/browser/navigation_controller.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698