| 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> |
| 9 |
| 10 #include "base/macros.h" |
| 8 #include "components/mus/public/cpp/window_tree_connection.h" | 11 #include "components/mus/public/cpp/window_tree_connection.h" |
| 9 #include "components/mus/public/cpp/window_tree_delegate.h" | 12 #include "components/mus/public/cpp/window_tree_delegate.h" |
| 10 #include "components/mus/public/interfaces/window_tree_host.mojom.h" | 13 #include "components/mus/public/interfaces/window_tree_host.mojom.h" |
| 11 #include "components/web_view/public/cpp/web_view.h" | 14 #include "components/web_view/public/cpp/web_view.h" |
| 12 #include "components/web_view/public/interfaces/web_view.mojom.h" | 15 #include "components/web_view/public/interfaces/web_view.mojom.h" |
| 13 #include "mandoline/ui/desktop_ui/find_bar_delegate.h" | 16 #include "mandoline/ui/desktop_ui/find_bar_delegate.h" |
| 14 #include "mandoline/ui/desktop_ui/public/interfaces/omnibox.mojom.h" | 17 #include "mandoline/ui/desktop_ui/public/interfaces/omnibox.mojom.h" |
| 15 #include "mandoline/ui/desktop_ui/public/interfaces/view_embedder.mojom.h" | 18 #include "mandoline/ui/desktop_ui/public/interfaces/view_embedder.mojom.h" |
| 16 #include "mojo/application/public/cpp/interface_factory.h" | 19 #include "mojo/application/public/cpp/interface_factory.h" |
| 17 #include "mojo/common/weak_binding_set.h" | 20 #include "mojo/common/weak_binding_set.h" |
| (...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 | 134 |
| 132 OmniboxPtr omnibox_; | 135 OmniboxPtr omnibox_; |
| 133 scoped_ptr<mojo::ApplicationConnection> omnibox_connection_; | 136 scoped_ptr<mojo::ApplicationConnection> omnibox_connection_; |
| 134 | 137 |
| 135 DISALLOW_COPY_AND_ASSIGN(BrowserWindow); | 138 DISALLOW_COPY_AND_ASSIGN(BrowserWindow); |
| 136 }; | 139 }; |
| 137 | 140 |
| 138 } // namespace mandoline | 141 } // namespace mandoline |
| 139 | 142 |
| 140 #endif // MANDOLINE_UI_DESKTOP_UI_BROWSER_WINDOW_H_ | 143 #endif // MANDOLINE_UI_DESKTOP_UI_BROWSER_WINDOW_H_ |
| OLD | NEW |