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

Side by Side Diff: ui/views/mus/platform_window_mus.h

Issue 1674903003: Extract shell methods from ApplicationImpl into a base class, and pass this to Initialize() instead. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@mojom
Patch Set: . Created 4 years, 10 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
« no previous file with comments | « ui/views/mus/platform_test_helper_mus.cc ('k') | ui/views/mus/platform_window_mus.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 UI_VIEWS_MUS_PLATFORM_WINDOW_MUS_H_ 5 #ifndef UI_VIEWS_MUS_PLATFORM_WINDOW_MUS_H_
6 #define UI_VIEWS_MUS_PLATFORM_WINDOW_MUS_H_ 6 #define UI_VIEWS_MUS_PLATFORM_WINDOW_MUS_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <string> 10 #include <string>
11 #include <vector> 11 #include <vector>
12 12
13 #include "base/macros.h" 13 #include "base/macros.h"
14 #include "components/mus/public/cpp/input_event_handler.h" 14 #include "components/mus/public/cpp/input_event_handler.h"
15 #include "components/mus/public/cpp/window_observer.h" 15 #include "components/mus/public/cpp/window_observer.h"
16 #include "ui/platform_window/platform_window.h" 16 #include "ui/platform_window/platform_window.h"
17 #include "ui/views/mus/mus_export.h" 17 #include "ui/views/mus/mus_export.h"
18 18
19 namespace bitmap_uploader { 19 namespace bitmap_uploader {
20 class BitmapUploader; 20 class BitmapUploader;
21 } 21 }
22 22
23 namespace mojo { 23 namespace mojo {
24 namespace shell {
25 namespace mojom {
26 class Shell; 24 class Shell;
27 } 25 }
28 }
29 }
30 26
31 namespace ui { 27 namespace ui {
32 class ViewProp; 28 class ViewProp;
33 } 29 }
34 30
35 namespace views { 31 namespace views {
36 32
37 class VIEWS_MUS_EXPORT PlatformWindowMus 33 class VIEWS_MUS_EXPORT PlatformWindowMus
38 : public NON_EXPORTED_BASE(ui::PlatformWindow), 34 : public NON_EXPORTED_BASE(ui::PlatformWindow),
39 public mus::WindowObserver, 35 public mus::WindowObserver,
40 public NON_EXPORTED_BASE(mus::InputEventHandler) { 36 public NON_EXPORTED_BASE(mus::InputEventHandler) {
41 public: 37 public:
42 PlatformWindowMus(ui::PlatformWindowDelegate* delegate, 38 PlatformWindowMus(ui::PlatformWindowDelegate* delegate,
43 mojo::shell::mojom::Shell* shell, 39 mojo::Shell* shell,
44 mus::Window* mus_window); 40 mus::Window* mus_window);
45 ~PlatformWindowMus() override; 41 ~PlatformWindowMus() override;
46 42
47 void Activate(); 43 void Activate();
48 44
49 void SetCursorById(mus::mojom::Cursor cursor); 45 void SetCursorById(mus::mojom::Cursor cursor);
50 46
51 // ui::PlatformWindow: 47 // ui::PlatformWindow:
52 void Show() override; 48 void Show() override;
53 void Hide() override; 49 void Hide() override;
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 #ifndef NDEBUG 100 #ifndef NDEBUG
105 scoped_ptr<base::WeakPtrFactory<PlatformWindowMus>> weak_factory_; 101 scoped_ptr<base::WeakPtrFactory<PlatformWindowMus>> weak_factory_;
106 #endif 102 #endif
107 103
108 DISALLOW_COPY_AND_ASSIGN(PlatformWindowMus); 104 DISALLOW_COPY_AND_ASSIGN(PlatformWindowMus);
109 }; 105 };
110 106
111 } // namespace views 107 } // namespace views
112 108
113 #endif // UI_VIEWS_MUS_PLATFORM_WINDOW_MUS_H_ 109 #endif // UI_VIEWS_MUS_PLATFORM_WINDOW_MUS_H_
OLDNEW
« no previous file with comments | « ui/views/mus/platform_test_helper_mus.cc ('k') | ui/views/mus/platform_window_mus.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698