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

Unified Diff: ash/host/ash_remote_window_tree_host_win.h

Issue 277753002: Makes construction of (ash)RemoteWindowTreeHostWin explicit (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix Created 6 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 | « ash/display/virtual_keyboard_window_controller.cc ('k') | ash/host/ash_remote_window_tree_host_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/host/ash_remote_window_tree_host_win.h
diff --git a/ash/host/ash_remote_window_tree_host_win.h b/ash/host/ash_remote_window_tree_host_win.h
index 25cdb34de9a1e7e843acfdc954ed928c0d5e37d5..63017f2d744df6e711ef60736616a84f31d0ac10 100644
--- a/ash/host/ash_remote_window_tree_host_win.h
+++ b/ash/host/ash_remote_window_tree_host_win.h
@@ -5,6 +5,8 @@
#ifndef ASH_HOST_REMOTE_WINDOW_TREE_HOST_WIN_H_
#define ASH_HOST_REMOTE_WINDOW_TREE_HOST_WIN_H_
+#include <windows.h>
+
#include "ash/ash_export.h"
#include "ash/host/ash_window_tree_host.h"
#include "ash/host/transformer_helper.h"
@@ -16,17 +18,9 @@ class ASH_EXPORT AshRemoteWindowTreeHostWin
: public AshWindowTreeHost,
public aura::RemoteWindowTreeHostWin {
public:
- // Creates an instance of AshRemoteWindowTreeHostWin
- // and sets it to RemoteWindowTreeHostWin::SetInstance.
- static void Init();
-
- // Returns the instance created in Init() method above.
- // This also performs an extra check if the instance is same
- // one that aura::RemoteWindowTreeHostWin::Instance() returns.
- static AshRemoteWindowTreeHostWin* GetInstance();
+ explicit AshRemoteWindowTreeHostWin(HWND remote_hwnd);
private:
- AshRemoteWindowTreeHostWin();
virtual ~AshRemoteWindowTreeHostWin();
// AshWindowTreeHost:
« no previous file with comments | « ash/display/virtual_keyboard_window_controller.cc ('k') | ash/host/ash_remote_window_tree_host_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698