Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(682)

Side by Side Diff: mandoline/ui/browser/browser.h

Issue 1139123006: Fork the mojo shell interfaces used by Mandoline. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixes Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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_BROWSER_BROWSER_H_ 5 #ifndef MANDOLINE_UI_BROWSER_BROWSER_H_
6 #define MANDOLINE_UI_BROWSER_BROWSER_H_ 6 #define MANDOLINE_UI_BROWSER_BROWSER_H_
7 7
8 #include "components/view_manager/public/cpp/view_manager.h" 8 #include "components/view_manager/public/cpp/view_manager.h"
9 #include "components/view_manager/public/cpp/view_manager_delegate.h" 9 #include "components/view_manager/public/cpp/view_manager_delegate.h"
10 #include "components/window_manager/window_manager_app.h" 10 #include "components/window_manager/window_manager_app.h"
11 #include "components/window_manager/window_manager_delegate.h" 11 #include "components/window_manager/window_manager_delegate.h"
12 #include "mandoline/services/navigation/public/interfaces/navigation.mojom.h" 12 #include "mandoline/services/navigation/public/interfaces/navigation.mojom.h"
13 #include "mandoline/ui/browser/navigator_host_impl.h" 13 #include "mandoline/ui/browser/navigator_host_impl.h"
14 #include "mandoline/ui/browser/omnibox.mojom.h" 14 #include "mandoline/ui/browser/omnibox.mojom.h"
15 #include "third_party/mojo/src/mojo/public/cpp/application/application_delegate. h" 15 #include "mojo/application/public/cpp/application_delegate.h"
16 #include "third_party/mojo/src/mojo/public/cpp/application/application_impl.h" 16 #include "mojo/application/public/cpp/application_impl.h"
17 #include "third_party/mojo/src/mojo/public/cpp/application/connect.h" 17 #include "mojo/application/public/cpp/connect.h"
18 #include "third_party/mojo/src/mojo/public/cpp/application/service_provider_impl .h" 18 #include "mojo/application/public/cpp/service_provider_impl.h"
19 #include "ui/mojo/events/input_events.mojom.h" 19 #include "ui/mojo/events/input_events.mojom.h"
20 #include "url/gurl.h" 20 #include "url/gurl.h"
21 21
22 namespace mandoline { 22 namespace mandoline {
23 23
24 class BrowserUI; 24 class BrowserUI;
25 class MergedServiceProvider; 25 class MergedServiceProvider;
26 26
27 class Browser : public mojo::ApplicationDelegate, 27 class Browser : public mojo::ApplicationDelegate,
28 public mojo::ViewManagerDelegate, 28 public mojo::ViewManagerDelegate,
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 GURL current_url_; 91 GURL current_url_;
92 92
93 scoped_ptr<BrowserUI> ui_; 93 scoped_ptr<BrowserUI> ui_;
94 94
95 DISALLOW_COPY_AND_ASSIGN(Browser); 95 DISALLOW_COPY_AND_ASSIGN(Browser);
96 }; 96 };
97 97
98 } // namespace mandoline 98 } // namespace mandoline
99 99
100 #endif // MANDOLINE_UI_BROWSER_BROWSER_H_ 100 #endif // MANDOLINE_UI_BROWSER_BROWSER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698