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

Unified Diff: ui/views/mus/window_tree_host_mus.h

Issue 1999083002: Finish eliminating PlatformWindowMus (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/views/mus/platform_window_mus.cc ('k') | ui/views/mus/window_tree_host_mus.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/views/mus/window_tree_host_mus.h
diff --git a/ui/views/mus/window_tree_host_mus.h b/ui/views/mus/window_tree_host_mus.h
index 30da7ed2d3fb0b6b0d99855d1ba1fb6128d281c9..e1930c341e9b304a932ce3a4bba173dee97b672c 100644
--- a/ui/views/mus/window_tree_host_mus.h
+++ b/ui/views/mus/window_tree_host_mus.h
@@ -11,6 +11,10 @@
class SkBitmap;
+namespace bitmap_uploader {
+ class BitmapUploader;
+}
+
namespace mus {
class Window;
}
@@ -19,6 +23,10 @@ namespace shell {
class Connector;
}
+namespace ui {
+class ViewProp;
+}
+
namespace views {
class InputMethodMUS;
@@ -32,8 +40,6 @@ class VIEWS_MUS_EXPORT WindowTreeHostMus : public aura::WindowTreeHostPlatform {
mus::Window* window);
~WindowTreeHostMus() override;
- PlatformWindowMus* platform_window();
-
private:
// aura::WindowTreeHostPlatform:
void DispatchEvent(ui::Event* event) override;
@@ -44,6 +50,10 @@ class VIEWS_MUS_EXPORT WindowTreeHostMus : public aura::WindowTreeHostPlatform {
NativeWidgetMus* native_widget_;
std::unique_ptr<InputMethodMUS> input_method_;
+ // Bitmap management.
+ std::unique_ptr<bitmap_uploader::BitmapUploader> bitmap_uploader_;
+ std::unique_ptr<ui::ViewProp> prop_;
+
DISALLOW_COPY_AND_ASSIGN(WindowTreeHostMus);
};
« no previous file with comments | « ui/views/mus/platform_window_mus.cc ('k') | ui/views/mus/window_tree_host_mus.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698