OLD | NEW |
| (Empty) |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef UI_VIEWER_VIEWER_HOST_WIN_H_ | |
6 #define UI_VIEWER_VIEWER_HOST_WIN_H_ | |
7 | |
8 #include "base/memory/scoped_ptr.h" | |
9 | |
10 class ViewerStackingClient; | |
11 | |
12 namespace aura { | |
13 class FocusManager; | |
14 class RootWindow; | |
15 | |
16 namespace shared { | |
17 class RootWindowCaptureClient; | |
18 } | |
19 | |
20 } | |
21 | |
22 class ViewerHostWin { | |
23 public: | |
24 ViewerHostWin(); | |
25 virtual ~ViewerHostWin(); | |
26 | |
27 private: | |
28 scoped_ptr<aura::RootWindow> root_window_; | |
29 scoped_ptr<aura::shared::RootWindowCaptureClient> root_window_capture_client_; | |
30 scoped_ptr<ViewerStackingClient> stacking_client_; | |
31 scoped_ptr<aura::FocusManager> focus_manager_; | |
32 | |
33 DISALLOW_COPY_AND_ASSIGN(ViewerHostWin); | |
34 }; | |
35 | |
36 #endif // UI_VIEWER_VIEWER_HOST_WIN_H_ | |
OLD | NEW |