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

Side by Side Diff: ash/root_window_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_ROOT_WINDOW_DELEGATE_H_
6 #define ASH_ROOT_WINDOW_DELEGATE_H_
7
8 #include "ash/ash_export.h"
9 #include "ui/aura/root_window_delegate.h"
10
11 namespace ash {
12
13 // Implementation of aura::RootWindowDelegate.
14 class ASH_EXPORT RootWindowDelegate : public aura::RootWindowDelegate {
15 public:
16 virtual ~RootWindowDelegate() {}
17
18 // Creates a new aura::RootWindowDelegate. The caller owns the returned
19 // value.
20 static aura::RootWindowDelegate* Create();
21
22 protected:
23 RootWindowDelegate() {}
24 };
25
26 } // namespace ash
27
28 #endif // ASH_ROOT_WINDOW_DELEGATE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698