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 navigation.mojom; | 5 module navigation.mojom; |
6 | 6 |
7 import "components/mus/public/interfaces/window_tree.mojom"; | 7 import "services/ui/public/interfaces/window_tree.mojom"; |
8 import "ui/gfx/geometry/mojo/geometry.mojom"; | 8 import "ui/gfx/geometry/mojo/geometry.mojom"; |
9 import "url/mojo/url.mojom"; | 9 import "url/mojo/url.mojom"; |
10 | 10 |
11 // TODO(beng): A general note about structs & methods in this file. | 11 // TODO(beng): A general note about structs & methods in this file. |
12 // | 12 // |
13 // These types are (for the most part) fairly rote copies of enums, structs & | 13 // These types are (for the most part) fairly rote copies of enums, structs & |
14 // interfaces from //content/public/browser & friends. | 14 // interfaces from //content/public/browser & friends. |
15 // Not a huge amount of thought has been put into which values & methods should | 15 // Not a huge amount of thought has been put into which values & methods should |
16 // be made available, the emphasis has been on getting a working service up and | 16 // be made available, the emphasis has been on getting a working service up and |
17 // running that is useful. It would be worth taking a pass through this set at | 17 // running that is useful. It would be worth taking a pass through this set at |
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
118 // UI. | 118 // UI. |
119 GetWindowTreeClient(mus.mojom.WindowTreeClient& client); | 119 GetWindowTreeClient(mus.mojom.WindowTreeClient& client); |
120 | 120 |
121 ShowInterstitial(string html); | 121 ShowInterstitial(string html); |
122 HideInterstitial(); | 122 HideInterstitial(); |
123 | 123 |
124 // The resize area is a rectangle in the bottom corner of the view that allows | 124 // The resize area is a rectangle in the bottom corner of the view that allows |
125 // the top-level window containing the view to be interactively resized. | 125 // the top-level window containing the view to be interactively resized. |
126 SetResizerSize(gfx.mojom.Size size); | 126 SetResizerSize(gfx.mojom.Size size); |
127 }; | 127 }; |
OLD | NEW |