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

Side by Side Diff: ui/viewer/viewer_host_win.h

Issue 10872002: beginnings of metro viewer process (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: cleanup Created 8 years, 3 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 | Annotate | Revision Log
« no previous file with comments | « ui/viewer/viewer.gyp ('k') | ui/viewer/viewer_host_win.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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_VIEWER_HOST_WIN_H_
6 #define UI_VIEWER_VIEWER_VIEWER_HOST_WIN_H_
tfarina 2012/09/18 01:11:52 nit: UI_VIEWER_VIEWER_HOST_WIN_H_ there is an ext
7
8 #include "base/memory/scoped_ptr.h"
9
10 class ViewerStackingClient;
11 namespace aura { class FocusManager; }
12 namespace aura { class RootWindow; }
tfarina 2012/09/18 01:11:52 ham? what is that :) I think you meant: namespac
13 namespace aura { namespace shared { class RootWindowCaptureClient; } }
14
15 class ViewerHostWin {
tfarina 2012/09/18 01:11:52 doesn't this needs to be in ui namespace? or even
16 public:
17 ViewerHostWin();
18 virtual ~ViewerHostWin();
19
20 private:
21 scoped_ptr<aura::RootWindow> root_window_;
22 scoped_ptr<aura::shared::RootWindowCaptureClient> root_window_capture_client_;
23 scoped_ptr<ViewerStackingClient> stacking_client_;
24 scoped_ptr<aura::FocusManager> focus_manager_;
25
26 DISALLOW_COPY_AND_ASSIGN(ViewerHostWin);
27 };
28
29 #endif // UI_VIEWER_VIEWER_VIEWER_HOST_WIN_H_
OLDNEW
« no previous file with comments | « ui/viewer/viewer.gyp ('k') | ui/viewer/viewer_host_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698