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

Unified Diff: ui/aura/test/aura_test_base.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/test/aura_test_base.h
diff --git a/ui/aura/test/aura_test_base.h b/ui/aura/test/aura_test_base.h
index 2b8990a96f9423dad5df3b42f8c6424a0fe4ec7a..66845e3431c34d2a837622e04f1b5f4367e5436c 100644
--- a/ui/aura/test/aura_test_base.h
+++ b/ui/aura/test/aura_test_base.h
@@ -13,6 +13,7 @@
namespace aura {
class RootWindow;
+class Window;
namespace test {
// A base class for aura unit tests.
@@ -26,6 +27,12 @@ class AuraTestBase : public testing::Test {
virtual void SetUp() OVERRIDE;
virtual void TearDown() OVERRIDE;
+ // Creates a transient base, using the |root_window()| as context.
sky 2012/11/21 23:35:59 base -> window that is transient to |parent| ...
+ aura::Window* CreateTransientChild(int id, aura::Window* parent);
+
+ // Attach this to the current shell's root window.
sky 2012/11/21 23:35:59 This is effectively a cover method for SetDefaultP
+ void AddToRootWindow(aura::Window* window);
+
protected:
void RunAllPendingInMessageLoop();

Powered by Google App Engine
This is Rietveld 408576698