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: ash/display/display_manager_delegate.h

Issue 11360045: ash: Add RootWindowHostFactory class. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 8 years 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
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 ASH_DISPLAY_DISPLAY_MANAGER_DELEGATE_H_
6 #define ASH_DISPLAY_DISPLAY_MANAGER_DELEGATE_H_
7
8 namespace aura {
9 class RootWindowDelegate;
10 }
11
12 namespace ash {
13 namespace internal {
14
15 // Delegate of the DisplayManager.
16 class DisplayManagerDelegate {
17 public:
18 virtual ~DisplayManagerDelegate() {}
19
20 // Creates a new RootWindowDelegate. DisplayManager takes ownership
21 // of the returned value.
22 virtual aura::RootWindowDelegate* CreateRootWindowDelegate() = 0;
23 };
24
25 } // namespace internal
26 } // namespace ash
27
28 #endif // ASH_DISPLAY_DISPLAY_MANAGER_DELEGATE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698