| OLD | NEW |
| 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 Loading... |
| 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 }; |
| OLD | NEW |