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

Unified Diff: ui/aura/client/capture_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
« no previous file with comments | « ui/aura/client/activation_client.cc ('k') | ui/aura/client/capture_client.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/aura/client/capture_client.h
diff --git a/ui/aura/client/capture_client.h b/ui/aura/client/capture_client.h
index b244c0caef13bca1d205cbade911a5fa4675b74b..f8013284c2056aeeb77fcef14deaabf79a4bc48b 100644
--- a/ui/aura/client/capture_client.h
+++ b/ui/aura/client/capture_client.h
@@ -8,7 +8,6 @@
#include "ui/aura/aura_export.h"
namespace aura {
-class RootWindow;
class Window;
namespace client {
@@ -29,10 +28,10 @@ class AURA_EXPORT CaptureClient {
virtual ~CaptureClient() {}
};
-// Sets/Gets the capture client on the RootWindow.
-AURA_EXPORT void SetCaptureClient(RootWindow* root_window,
+// Sets/Gets the capture client on the root Window.
+AURA_EXPORT void SetCaptureClient(Window* root_window,
CaptureClient* client);
-AURA_EXPORT CaptureClient* GetCaptureClient(RootWindow* root_window);
+AURA_EXPORT CaptureClient* GetCaptureClient(Window* root_window);
// A utility function to get the current capture window. Returns NULL
// if the window doesn't have a root window, or there is no capture window.
« no previous file with comments | « ui/aura/client/activation_client.cc ('k') | ui/aura/client/capture_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698