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

Unified Diff: ash/common/wm/container_finder.h

Issue 2735983006: Renames WmWindowUserData and converts to using aura (Closed)
Patch Set: ownership comments Created 3 years, 9 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: ash/common/wm/container_finder.h
diff --git a/ash/common/wm/container_finder.h b/ash/common/wm/container_finder.h
index a54e57adde6b6930a58bc0e82e142b39615f473d..25570b516988f89f8fa8eeec1d41210f2c0e88e0 100644
--- a/ash/common/wm/container_finder.h
+++ b/ash/common/wm/container_finder.h
@@ -9,6 +9,10 @@
#include "ash/ash_export.h"
+namespace aura {
+class Window;
+}
+
namespace gfx {
class Rect;
}
@@ -32,9 +36,9 @@ ASH_EXPORT WmWindow* GetDefaultParent(WmWindow* context,
// Returns the list of containers that match |container_id| in all root windows.
// If |priority_root| is non-null, the container in |priority_root| is placed at
// the front of the list.
-ASH_EXPORT std::vector<WmWindow*> GetContainersFromAllRootWindows(
+ASH_EXPORT std::vector<aura::Window*> GetContainersFromAllRootWindows(
int container_id,
- WmWindow* priority_root = nullptr);
+ aura::Window* priority_root = nullptr);
} // namespace wm
} // namespace ash

Powered by Google App Engine
This is Rietveld 408576698