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

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

Issue 38423002: Make aura::clients take Window instead of RootWindow (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 7 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: ui/aura/client/activation_client.h
diff --git a/ui/aura/client/activation_client.h b/ui/aura/client/activation_client.h
index db4cd1b15b60770c8612dc42471a43e81c00b0db..054829ec2aaffcf16f06900cd901dced7d080955 100644
--- a/ui/aura/client/activation_client.h
+++ b/ui/aura/client/activation_client.h
@@ -6,14 +6,13 @@
#define UI_AURA_CLIENT_ACTIVATION_CLIENT_H_
#include "ui/aura/aura_export.h"
-#include "ui/aura/window.h"
namespace ui {
class Event;
}
namespace aura {
-class RootWindow;
+class Window;
namespace client {
class ActivationChangeObserver;
@@ -57,10 +56,10 @@ class AURA_EXPORT ActivationClient {
virtual ~ActivationClient() {}
};
-// Sets/Gets the activation client on the RootWindow.
-AURA_EXPORT void SetActivationClient(RootWindow* root_window,
+// Sets/Gets the activation client on the root Window.
+AURA_EXPORT void SetActivationClient(Window* root_window,
ActivationClient* client);
-AURA_EXPORT ActivationClient* GetActivationClient(RootWindow* root_window);
+AURA_EXPORT ActivationClient* GetActivationClient(Window* root_window);
// Some types of transient window are only visible when active.
// The transient parents of these windows may have visual appearance properties
« no previous file with comments | « chrome/browser/ui/ash/launcher/shell_window_launcher_controller.cc ('k') | ui/aura/client/activation_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698