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

Side by Side Diff: chrome/common/render_messages_internal.h

Issue 6462017: gtk: Improve fullscreen RenderWidgetHostViewGtk. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: update a comment Created 9 years, 10 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 (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 #include <map> 5 #include <map>
6 #include <set> 6 #include <set>
7 #include <string> 7 #include <string>
8 #include <vector> 8 #include <vector>
9 9
10 #include "build/build_config.h" 10 #include "build/build_config.h"
(...skipping 1065 matching lines...) Expand 10 before | Expand all | Expand 10 after
1076 // Similar to ViewHostMsg_CreateWindow, except used for sub-widgets, like 1076 // Similar to ViewHostMsg_CreateWindow, except used for sub-widgets, like
1077 // <select> dropdowns. This message is sent to the TabContents that 1077 // <select> dropdowns. This message is sent to the TabContents that
1078 // contains the widget being created. 1078 // contains the widget being created.
1079 IPC_SYNC_MESSAGE_CONTROL2_1(ViewHostMsg_CreateWidget, 1079 IPC_SYNC_MESSAGE_CONTROL2_1(ViewHostMsg_CreateWidget,
1080 int /* opener_id */, 1080 int /* opener_id */,
1081 WebKit::WebPopupType /* popup type */, 1081 WebKit::WebPopupType /* popup type */,
1082 int /* route_id */) 1082 int /* route_id */)
1083 1083
1084 // Similar to ViewHostMsg_CreateWidget except the widget is a full screen 1084 // Similar to ViewHostMsg_CreateWidget except the widget is a full screen
1085 // window. 1085 // window.
1086 IPC_SYNC_MESSAGE_CONTROL2_1(ViewHostMsg_CreateFullscreenWidget, 1086 IPC_SYNC_MESSAGE_CONTROL1_1(ViewHostMsg_CreateFullscreenWidget,
1087 int /* opener_id */, 1087 int /* opener_id */,
1088 WebKit::WebPopupType /* popup type */,
1089 int /* route_id */) 1088 int /* route_id */)
1090 1089
1091 // These three messages are sent to the parent RenderViewHost to display the 1090 // These three messages are sent to the parent RenderViewHost to display the
1092 // page/widget that was created by 1091 // page/widget that was created by
1093 // CreateWindow/CreateWidget/CreateFullscreenWidget. routing_id 1092 // CreateWindow/CreateWidget/CreateFullscreenWidget. routing_id
1094 // refers to the id that was returned from the Create message above. 1093 // refers to the id that was returned from the Create message above.
1095 // The initial_position parameter is a rectangle in screen coordinates. 1094 // The initial_position parameter is a rectangle in screen coordinates.
1096 // 1095 //
1097 // FUTURE: there will probably be flags here to control if the result is 1096 // FUTURE: there will probably be flags here to control if the result is
1098 // in a new window. 1097 // in a new window.
(...skipping 1422 matching lines...) Expand 10 before | Expand all | Expand 10 after
2521 // The currently displayed PDF has an unsupported feature. 2520 // The currently displayed PDF has an unsupported feature.
2522 IPC_MESSAGE_ROUTED0(ViewHostMsg_PDFHasUnsupportedFeature) 2521 IPC_MESSAGE_ROUTED0(ViewHostMsg_PDFHasUnsupportedFeature)
2523 2522
2524 // JavaScript related messages ----------------------------------------------- 2523 // JavaScript related messages -----------------------------------------------
2525 2524
2526 // Notify the JavaScript engine in the render to change its parameters 2525 // Notify the JavaScript engine in the render to change its parameters
2527 // while performing stress testing. 2526 // while performing stress testing.
2528 IPC_MESSAGE_ROUTED2(ViewMsg_JavaScriptStressTestControl, 2527 IPC_MESSAGE_ROUTED2(ViewMsg_JavaScriptStressTestControl,
2529 int /* cmd */, 2528 int /* cmd */,
2530 int /* param */) 2529 int /* param */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698