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"; |
| 8 import "ui/mojo/geometry/geometry.mojom"; |
7 import "url/mojo/url.mojom"; | 9 import "url/mojo/url.mojom"; |
8 | 10 |
9 interface ViewFactory { | 11 interface ViewFactory { |
10 CreateView(ViewClient client, View& view); | 12 CreateView(ViewClient client, View& view); |
11 }; | 13 }; |
12 | 14 |
13 interface ViewClient { | 15 interface ViewClient { |
14 LoadingStateChanged(bool is_loading); | 16 LoadingStateChanged(bool is_loading); |
| 17 NavigationStateChanged(url.mojom.Url url, |
| 18 string title, |
| 19 bool can_go_back, |
| 20 bool can_go_forward); |
| 21 LoadProgressChanged(double progress); |
| 22 ViewCreated(View view, |
| 23 ViewClient& client, |
| 24 bool is_popup, |
| 25 mojo.Rect initial_rect, |
| 26 bool user_gesture); |
| 27 Close(); |
15 }; | 28 }; |
16 | 29 |
17 interface View { | 30 interface View { |
18 LoadUrl(url.mojom.Url url); | 31 // Navigates the view to |url|. |
| 32 NavigateTo(url.mojom.Url url); |
| 33 |
| 34 GoBack(); |
| 35 GoForward(); |
| 36 Reload(bool skip_cache); |
| 37 Stop(); |
| 38 |
| 39 // Obtains a Mus WindowTreeClient for the View, so it can be embedded in a |
| 40 // UI. |
| 41 GetWindowTreeClient(mus.mojom.WindowTreeClient& client); |
19 }; | 42 }; |
OLD | NEW |