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

Side by Side Diff: content/common/render_message_filter.mojom

Issue 2472733002: Move ViewHostMsg_CreateFullscreenWidget to mojom. (Closed)
Patch Set: Move ViewHostMsg_CreateFullscreenWidget to mojom. Created 4 years, 1 month 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/renderer_host/render_message_filter.cc ('k') | content/common/view_messages.h » ('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 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 module content.mojom; 5 module content.mojom;
6 6
7 import "content/common/native_types.mojom"; 7 import "content/common/native_types.mojom";
8 import "content/public/common/window_container_type.mojom"; 8 import "content/public/common/window_container_type.mojom";
9 import "third_party/WebKit/public/platform/referrer.mojom"; 9 import "third_party/WebKit/public/platform/referrer.mojom";
10 import "third_party/WebKit/public/web/window_features.mojom"; 10 import "third_party/WebKit/public/web/window_features.mojom";
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 // Sent by the renderer when it is creating a new window. The browser creates 81 // Sent by the renderer when it is creating a new window. The browser creates
82 // a tab for it. If |reply.route_id| is MSG_ROUTING_NONE, the view couldn't 82 // a tab for it. If |reply.route_id| is MSG_ROUTING_NONE, the view couldn't
83 // be created. 83 // be created.
84 [Sync] CreateNewWindow(CreateNewWindowParams params) 84 [Sync] CreateNewWindow(CreateNewWindowParams params)
85 => (CreateNewWindowReply reply); 85 => (CreateNewWindowReply reply);
86 86
87 // Similar to CreateWindow, except used for sub-widgets, like <select> 87 // Similar to CreateWindow, except used for sub-widgets, like <select>
88 // dropdowns. 88 // dropdowns.
89 [Sync] CreateNewWidget(int32 opener_id, content.mojom.WebPopupType popup_type) 89 [Sync] CreateNewWidget(int32 opener_id, content.mojom.WebPopupType popup_type)
90 => (int32 route_id); 90 => (int32 route_id);
91
92 // Similar to CreateWidget except the widget is a full screen window.
93 [Sync] CreateFullscreenWidget(int32 opener_id)
94 => (int32 route_id);
91 }; 95 };
OLDNEW
« no previous file with comments | « content/browser/renderer_host/render_message_filter.cc ('k') | content/common/view_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698