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

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

Issue 2770873002: Remove ViewHostMsg_DidFirstPaintAfterLoad (Closed)
Patch Set: Rebased Created 3 years, 8 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 (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 <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 850 matching lines...) Expand 10 before | Expand all | Expand 10 after
861 861
862 // Message sent from the renderer to the browser when the suggested co-ordinates 862 // Message sent from the renderer to the browser when the suggested co-ordinates
863 // of the anchor for a HTML form validation message have changed. 863 // of the anchor for a HTML form validation message have changed.
864 IPC_MESSAGE_ROUTED1(ViewHostMsg_MoveValidationMessage, 864 IPC_MESSAGE_ROUTED1(ViewHostMsg_MoveValidationMessage,
865 gfx::Rect /* anchor rectangle in root view coordinate */) 865 gfx::Rect /* anchor rectangle in root view coordinate */)
866 866
867 // Sent once a paint happens after the first non empty layout. In other words, 867 // Sent once a paint happens after the first non empty layout. In other words,
868 // after the frame widget has painted something. 868 // after the frame widget has painted something.
869 IPC_MESSAGE_ROUTED0(ViewHostMsg_DidFirstVisuallyNonEmptyPaint) 869 IPC_MESSAGE_ROUTED0(ViewHostMsg_DidFirstVisuallyNonEmptyPaint)
870 870
871 // Send after a paint happens after any page commit, including a blank one.
872 // TODO(kenrb): This, and all ViewHostMsg_* messages that actually pertain to
873 // RenderWidget(Host), should be renamed to WidgetHostMsg_*.
874 // See https://crbug.com/537793.
875 IPC_MESSAGE_ROUTED0(ViewHostMsg_DidFirstPaintAfterLoad)
876
877 // Sent in reply to ViewMsg_WaitForNextFrameForTests. 871 // Sent in reply to ViewMsg_WaitForNextFrameForTests.
878 IPC_MESSAGE_ROUTED0(ViewHostMsg_WaitForNextFrameForTests_ACK) 872 IPC_MESSAGE_ROUTED0(ViewHostMsg_WaitForNextFrameForTests_ACK)
879 873
880 #if defined(OS_ANDROID) 874 #if defined(OS_ANDROID)
881 // Start an android intent with the given URI. 875 // Start an android intent with the given URI.
882 IPC_MESSAGE_ROUTED2(ViewHostMsg_StartContentIntent, 876 IPC_MESSAGE_ROUTED2(ViewHostMsg_StartContentIntent,
883 GURL /* content_url */, 877 GURL /* content_url */,
884 bool /* is_main_frame */) 878 bool /* is_main_frame */)
885 879
886 // Notifies that an unhandled tap has occurred at the specified x,y position 880 // Notifies that an unhandled tap has occurred at the specified x,y position
887 // and that the UI may need to be triggered. 881 // and that the UI may need to be triggered.
888 IPC_MESSAGE_ROUTED2(ViewHostMsg_ShowUnhandledTapUIIfNeeded, 882 IPC_MESSAGE_ROUTED2(ViewHostMsg_ShowUnhandledTapUIIfNeeded,
889 int /* x */, 883 int /* x */,
890 int /* y */) 884 int /* y */)
891 885
892 #elif defined(OS_MACOSX) 886 #elif defined(OS_MACOSX)
893 // Receives content of a web page as plain text. 887 // Receives content of a web page as plain text.
894 IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string) 888 IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string)
895 #endif 889 #endif
896 890
897 // Adding a new message? Stick to the sort order above: first platform 891 // Adding a new message? Stick to the sort order above: first platform
898 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform 892 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform
899 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. 893 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg.
OLDNEW
« no previous file with comments | « content/browser/renderer_host/render_widget_host_unittest.cc ('k') | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698