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_MANAGER_H_ | 5 #ifndef MANDOLINE_UI_DESKTOP_UI_BROWSER_MANAGER_H_ |
6 #define MANDOLINE_UI_DESKTOP_UI_BROWSER_MANAGER_H_ | 6 #define MANDOLINE_UI_DESKTOP_UI_BROWSER_MANAGER_H_ |
7 | 7 |
8 #include <set> | 8 #include <set> |
9 | 9 |
10 #include "base/macros.h" | 10 #include "base/macros.h" |
11 #include "components/mus/public/interfaces/window_tree_host.mojom.h" | 11 #include "components/mus/public/interfaces/window_tree_host.mojom.h" |
12 #include "mandoline/ui/desktop_ui/public/interfaces/launch_handler.mojom.h" | 12 #include "mandoline/ui/desktop_ui/public/interfaces/launch_handler.mojom.h" |
13 #include "mojo/application/public/cpp/application_delegate.h" | |
14 #include "mojo/application/public/cpp/application_impl.h" | |
15 #include "mojo/application/public/cpp/connect.h" | |
16 #include "mojo/common/weak_binding_set.h" | 13 #include "mojo/common/weak_binding_set.h" |
17 #include "mojo/services/tracing/public/cpp/tracing_impl.h" | 14 #include "mojo/services/tracing/public/cpp/tracing_impl.h" |
| 15 #include "mojo/shell/public/cpp/application_delegate.h" |
| 16 #include "mojo/shell/public/cpp/application_impl.h" |
| 17 #include "mojo/shell/public/cpp/connect.h" |
18 #include "url/gurl.h" | 18 #include "url/gurl.h" |
19 | 19 |
20 namespace mojo { | 20 namespace mojo { |
21 class View; | 21 class View; |
22 } | 22 } |
23 | 23 |
24 namespace mandoline { | 24 namespace mandoline { |
25 | 25 |
26 class BrowserWindow; | 26 class BrowserWindow; |
27 | 27 |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
60 mojo::WeakBindingSet<LaunchHandler> launch_handler_bindings_; | 60 mojo::WeakBindingSet<LaunchHandler> launch_handler_bindings_; |
61 std::set<BrowserWindow*> browsers_; | 61 std::set<BrowserWindow*> browsers_; |
62 const base::TimeTicks startup_ticks_; | 62 const base::TimeTicks startup_ticks_; |
63 | 63 |
64 DISALLOW_COPY_AND_ASSIGN(BrowserManager); | 64 DISALLOW_COPY_AND_ASSIGN(BrowserManager); |
65 }; | 65 }; |
66 | 66 |
67 } // namespace mandoline | 67 } // namespace mandoline |
68 | 68 |
69 #endif // MANDOLINE_UI_DESKTOP_UI_BROWSER_MANAGER_H_ | 69 #endif // MANDOLINE_UI_DESKTOP_UI_BROWSER_MANAGER_H_ |
OLD | NEW |