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

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

Issue 297973002: Navigation transitions: Block first response until after transitions have run. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 6 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
« no previous file with comments | « content/browser/web_contents/web_contents_impl.cc ('k') | content/content_browser.gypi » ('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 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 "content/common/content_export.h" 8 #include "content/common/content_export.h"
9 #include "content/common/content_param_traits.h" 9 #include "content/common/content_param_traits.h"
10 #include "content/common/frame_message_enums.h" 10 #include "content/common/frame_message_enums.h"
(...skipping 609 matching lines...) Expand 10 before | Expand all | Expand 10 after
620 // Notify browser the brand color has been changed. 620 // Notify browser the brand color has been changed.
621 IPC_MESSAGE_ROUTED1(FrameHostMsg_DidChangeBrandColor, 621 IPC_MESSAGE_ROUTED1(FrameHostMsg_DidChangeBrandColor,
622 SkColor /* brand_color */) 622 SkColor /* brand_color */)
623 623
624 // Response for FrameMsg_TextSurroundingSelectionRequest, |startOffset| and 624 // Response for FrameMsg_TextSurroundingSelectionRequest, |startOffset| and
625 // |endOffset| are the offsets of the selection in the returned |content|. 625 // |endOffset| are the offsets of the selection in the returned |content|.
626 IPC_MESSAGE_ROUTED3(FrameHostMsg_TextSurroundingSelectionResponse, 626 IPC_MESSAGE_ROUTED3(FrameHostMsg_TextSurroundingSelectionResponse,
627 base::string16, /* content */ 627 base::string16, /* content */
628 size_t, /* startOffset */ 628 size_t, /* startOffset */
629 size_t /* endOffset */) 629 size_t /* endOffset */)
630
631 // Notifies the browser that the renderer has a pending navigation transition.
632 IPC_MESSAGE_CONTROL2(FrameHostMsg_SetHasPendingTransitionRequest,
633 int /* render_frame_id */,
634 bool /* is_transition */)
OLDNEW
« no previous file with comments | « content/browser/web_contents/web_contents_impl.cc ('k') | content/content_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698