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/frame_messages.h

Issue 365513002: Port identity_internals to mojo (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: patch beautification Created 6 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 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 663 matching lines...) Expand 10 before | Expand all | Expand 10 after
674 int /* render_frame_id */, 674 int /* render_frame_id */,
675 bool /* is_transition */) 675 bool /* is_transition */)
676 676
677 // Tells the browser to perform a navigation. 677 // Tells the browser to perform a navigation.
678 IPC_MESSAGE_ROUTED1(FrameHostMsg_BeginNavigation, 678 IPC_MESSAGE_ROUTED1(FrameHostMsg_BeginNavigation,
679 FrameHostMsg_BeginNavigation_Params) 679 FrameHostMsg_BeginNavigation_Params)
680 680
681 // Sent once a paint happens after the first non empty layout. In other words 681 // Sent once a paint happens after the first non empty layout. In other words
682 // after the frame has painted something. 682 // after the frame has painted something.
683 IPC_MESSAGE_ROUTED0(FrameHostMsg_DidFirstVisuallyNonEmptyPaint) 683 IPC_MESSAGE_ROUTED0(FrameHostMsg_DidFirstVisuallyNonEmptyPaint)
684
685 // Sent when a WebUI page that uses Mojo has executed its 'main' module. Our
686 // javascript based testing framework must wait until this has happened.
687 IPC_MESSAGE_ROUTED0(FrameHostMsg_WebUIMojoMainRan)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698