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

Unified Diff: ui/aura/client/stacking_client.h

Issue 11364053: make StackingClient dispatch to either ash or desktop (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove file Created 8 years, 1 month 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 side-by-side diff with in-line comments
Download patch
Index: ui/aura/client/stacking_client.h
diff --git a/ui/aura/client/stacking_client.h b/ui/aura/client/stacking_client.h
index 671c75535b20ce432e2c6df727e99d024b60d9e0..2b94ca1b356af3d78a2afef2a0c42924a319d012 100644
--- a/ui/aura/client/stacking_client.h
+++ b/ui/aura/client/stacking_client.h
@@ -24,22 +24,16 @@ class AURA_EXPORT StackingClient {
// that |window| should be added to instead.
// NOTE: this may have side effects. It should only be used when |window| is
// going to be immediately added.
Ben Goodger (Google) 2012/11/12 16:49:33 document |context|.
scottmg 2012/11/12 18:03:53 Done.
- virtual Window* GetDefaultParent(Window* window, const gfx::Rect& bounds) = 0;
+ virtual Window* GetDefaultParent(
+ Window* context,
+ Window* window,
+ const gfx::Rect& bounds) = 0;
};
// Set/Get the default stacking client.
AURA_EXPORT void SetStackingClient(StackingClient* stacking_client);
AURA_EXPORT StackingClient* GetStackingClient();
-// Set/Get a stacking client for a specific window. Setting the stacking client
-// sets the stacking client on the window's RootWindow, not the window itself.
-// Likewise getting obtains it from the window's RootWindow. If |window| is
-// non-NULL it must be in a RootWindow. If |window| is NULL, the default
-// stacking client is used.
-AURA_EXPORT void SetStackingClient(Window* window,
- StackingClient* stacking_client);
-AURA_EXPORT StackingClient* GetStackingClient(Window* window);
-
} // namespace client
} // namespace aura

Powered by Google App Engine
This is Rietveld 408576698