| 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 "ipc/ipc.mojom"; | 8 import "ipc/ipc.mojom"; |
| 9 import "ui/gfx/geometry/mojo/geometry.mojom"; | 9 import "ui/gfx/geometry/mojo/geometry.mojom"; |
| 10 import "ui/gfx/mojo/icc_profile.mojom"; | 10 import "ui/gfx/mojo/icc_profile.mojom"; |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 // The ID of the widget for the main frame. | 25 // The ID of the widget for the main frame. |
| 26 int32 main_frame_widget_routing_id = IPC.mojom.kRoutingIdNone; | 26 int32 main_frame_widget_routing_id = IPC.mojom.kRoutingIdNone; |
| 27 | 27 |
| 28 // The session storage namespace ID this view should use. | 28 // The session storage namespace ID this view should use. |
| 29 int64 session_storage_namespace_id; | 29 int64 session_storage_namespace_id; |
| 30 | 30 |
| 31 // The route ID of the opener RenderFrame or RenderFrameProxy, if we need to | 31 // The route ID of the opener RenderFrame or RenderFrameProxy, if we need to |
| 32 // set one (MSG_ROUTING_NONE otherwise). | 32 // set one (MSG_ROUTING_NONE otherwise). |
| 33 int32 opener_frame_route_id = IPC.mojom.kRoutingIdNone; | 33 int32 opener_frame_route_id = IPC.mojom.kRoutingIdNone; |
| 34 | 34 |
| 35 // Id of a related set of browsing contexts that the new view should belong |
| 36 // to. |
| 37 int32 browsing_instance_id; |
| 38 |
| 35 // Whether the RenderView should initially be swapped out. | 39 // Whether the RenderView should initially be swapped out. |
| 36 bool swapped_out; | 40 bool swapped_out; |
| 37 | 41 |
| 38 // Carries replicated information, such as frame name and sandbox flags, for | 42 // Carries replicated information, such as frame name and sandbox flags, for |
| 39 // this view's main frame, which will be a proxy in |swapped_out| | 43 // this view's main frame, which will be a proxy in |swapped_out| |
| 40 // views when in --site-per-process mode, or a RenderFrame in all other | 44 // views when in --site-per-process mode, or a RenderFrame in all other |
| 41 // cases. | 45 // cases. |
| 42 FrameReplicationState replicated_frame_state; | 46 FrameReplicationState replicated_frame_state; |
| 43 | 47 |
| 44 // The ID of the proxy object for the main frame in this view. It is only | 48 // The ID of the proxy object for the main frame in this view. It is only |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 166 UpdateScrollbarTheme(UpdateScrollbarThemeParams params); | 170 UpdateScrollbarTheme(UpdateScrollbarThemeParams params); |
| 167 | 171 |
| 168 // Notification that the OS X Aqua color preferences changed. | 172 // Notification that the OS X Aqua color preferences changed. |
| 169 OnSystemColorsChanged(int32 aqua_color_variant, string highlight_text_color, | 173 OnSystemColorsChanged(int32 aqua_color_variant, string highlight_text_color, |
| 170 string highlight_color); | 174 string highlight_color); |
| 171 | 175 |
| 172 // Tells the renderer to empty its plugin list cache, optional reloading | 176 // Tells the renderer to empty its plugin list cache, optional reloading |
| 173 // pages containing plugins. | 177 // pages containing plugins. |
| 174 PurgePluginListCache(bool reload_pages); | 178 PurgePluginListCache(bool reload_pages); |
| 175 }; | 179 }; |
| OLD | NEW |