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

Side by Side Diff: ui/aura/desktop/desktop_stacking_client.h

Issue 10081022: Aura/ash split: Remove hacks and get chrome linking without ash. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 8 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
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_AURA_DESKTOP_DESKTOP_STACKING_CLIENT_H_
6 #define UI_AURA_DESKTOP_DESKTOP_STACKING_CLIENT_H_
7
8 #include "ui/aura/client/stacking_client.h"
9
10 #include "base/basictypes.h"
11 #include "base/compiler_specific.h"
12 #include "ui/aura/aura_export.h"
13
14 namespace aura {
15 class Window;
16
17 class AURA_EXPORT DesktopStackingClient : public client::StackingClient {
Ben Goodger (Google) 2012/04/13 22:57:03 explain what this does
18 public:
19 DesktopStackingClient();
20 virtual ~DesktopStackingClient();
21
22 // Overridden from client::StackingClient:
23 virtual Window* GetDefaultParent(Window* window) OVERRIDE;
24
25 DISALLOW_COPY_AND_ASSIGN(DesktopStackingClient);
26 };
27
28 } // namespace aura
29
30 #endif // UI_AURA_DESKTOP_DESKTOP_STACKING_CLIENT_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698