OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 #ifndef MANDOLINE_UI_DESKTOP_UI_BROWSER_WINDOW_H_ | 5 #ifndef MANDOLINE_UI_DESKTOP_UI_BROWSER_WINDOW_H_ |
6 #define MANDOLINE_UI_DESKTOP_UI_BROWSER_WINDOW_H_ | 6 #define MANDOLINE_UI_DESKTOP_UI_BROWSER_WINDOW_H_ |
7 | 7 |
8 #include <stdint.h> | 8 #include <stdint.h> |
9 | 9 |
10 #include "base/macros.h" | 10 #include "base/macros.h" |
11 #include "components/mus/public/cpp/window_tree_connection.h" | 11 #include "components/mus/public/cpp/window_tree_connection.h" |
12 #include "components/mus/public/cpp/window_tree_delegate.h" | 12 #include "components/mus/public/cpp/window_tree_delegate.h" |
13 #include "components/mus/public/interfaces/window_tree_host.mojom.h" | 13 #include "components/mus/public/interfaces/window_tree_host.mojom.h" |
14 #include "components/web_view/public/cpp/web_view.h" | 14 #include "components/web_view/public/cpp/web_view.h" |
15 #include "components/web_view/public/interfaces/web_view.mojom.h" | 15 #include "components/web_view/public/interfaces/web_view.mojom.h" |
16 #include "mandoline/ui/desktop_ui/find_bar_delegate.h" | 16 #include "mandoline/ui/desktop_ui/find_bar_delegate.h" |
17 #include "mandoline/ui/desktop_ui/public/interfaces/omnibox.mojom.h" | 17 #include "mandoline/ui/desktop_ui/public/interfaces/omnibox.mojom.h" |
18 #include "mandoline/ui/desktop_ui/public/interfaces/view_embedder.mojom.h" | 18 #include "mandoline/ui/desktop_ui/public/interfaces/view_embedder.mojom.h" |
19 #include "mojo/application/public/cpp/interface_factory.h" | |
20 #include "mojo/common/weak_binding_set.h" | 19 #include "mojo/common/weak_binding_set.h" |
| 20 #include "mojo/shell/public/cpp/interface_factory.h" |
21 #include "url/gurl.h" | 21 #include "url/gurl.h" |
22 | 22 |
23 namespace mojo { | 23 namespace mojo { |
24 class ApplicationConnection; | 24 class ApplicationConnection; |
25 class Shell; | 25 class Shell; |
26 } | 26 } |
27 | 27 |
28 namespace ui { | 28 namespace ui { |
29 namespace mojo { | 29 namespace mojo { |
30 class UIInit; | 30 class UIInit; |
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
134 | 134 |
135 OmniboxPtr omnibox_; | 135 OmniboxPtr omnibox_; |
136 scoped_ptr<mojo::ApplicationConnection> omnibox_connection_; | 136 scoped_ptr<mojo::ApplicationConnection> omnibox_connection_; |
137 | 137 |
138 DISALLOW_COPY_AND_ASSIGN(BrowserWindow); | 138 DISALLOW_COPY_AND_ASSIGN(BrowserWindow); |
139 }; | 139 }; |
140 | 140 |
141 } // namespace mandoline | 141 } // namespace mandoline |
142 | 142 |
143 #endif // MANDOLINE_UI_DESKTOP_UI_BROWSER_WINDOW_H_ | 143 #endif // MANDOLINE_UI_DESKTOP_UI_BROWSER_WINDOW_H_ |
OLD | NEW |