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

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

Issue 11421006: Desktop aura: Break aura::Window::SetParent in two. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: I think the content_unittests timeout on linux_aura is flake, but try to fix it anyway. 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 023d8bf89a876781994b768d6f88de2b777b891c..555fca6b1edbff2920090d71c1eccc6b8c87eb76 100644
--- a/ui/aura/client/stacking_client.h
+++ b/ui/aura/client/stacking_client.h
@@ -34,7 +34,7 @@ class AURA_EXPORT StackingClient {
// Set/Get the default stacking client.
AURA_EXPORT void SetStackingClient(StackingClient* stacking_client);
-AURA_EXPORT StackingClient* GetStackingClient();
+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.
@@ -43,7 +43,7 @@ AURA_EXPORT StackingClient* GetStackingClient();
// stacking client is used.
AURA_EXPORT void SetStackingClient(Window* window,
StackingClient* stacking_client);
-AURA_EXPORT StackingClient* GetStackingClient(Window* window);
+StackingClient* GetStackingClient(Window* window);
} // namespace client
} // namespace aura

Powered by Google App Engine
This is Rietveld 408576698