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

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: Rename test function. 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
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 589 matching lines...) Expand 10 before | Expand all | Expand 10 after
600 SkColor /* color */) 600 SkColor /* color */)
601 601
602 // Notifies the browser that media has started/stopped playing. 602 // Notifies the browser that media has started/stopped playing.
603 IPC_MESSAGE_ROUTED3(FrameHostMsg_MediaPlayingNotification, 603 IPC_MESSAGE_ROUTED3(FrameHostMsg_MediaPlayingNotification,
604 int64 /* player_cookie, distinguishes instances */, 604 int64 /* player_cookie, distinguishes instances */,
605 bool /* has_video */, 605 bool /* has_video */,
606 bool /* has_audio */) 606 bool /* has_audio */)
607 607
608 IPC_MESSAGE_ROUTED1(FrameHostMsg_MediaPausedNotification, 608 IPC_MESSAGE_ROUTED1(FrameHostMsg_MediaPausedNotification,
609 int64 /* player_cookie, distinguishes instances */) 609 int64 /* player_cookie, distinguishes instances */)
610
611 // Notifies the browser that the renderer has a pending navigation transition.
612 IPC_MESSAGE_CONTROL2(FrameHostMsg_SetHasPendingTransitionRequest,
613 int /* frame_id */,
jam 2014/06/18 00:34:25 nit: render_frame_id for consistency
614 bool /* is_transition */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698