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

Unified Diff: ui/aura/window_unittest.cc

Issue 7972023: Implicit animations through Layer. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: More tweaks Created 9 years, 3 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/window.cc ('k') | ui/aura_shell/desktop_layout_manager.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/aura/window_unittest.cc
diff --git a/ui/aura/window_unittest.cc b/ui/aura/window_unittest.cc
index c1b74644ff9d873f46a0255e8c0b49715646ee3f..eed32470c99fcd4ddc559de9f50a58a96de53f90 100644
--- a/ui/aura/window_unittest.cc
+++ b/ui/aura/window_unittest.cc
@@ -199,7 +199,7 @@ class WindowTest : public testing::Test {
Window* window = new Window(delegate);
window->set_id(id);
window->Init();
- window->SetBounds(bounds, 0);
+ window->SetBounds(bounds);
window->SetVisibility(Window::VISIBILITY_SHOWN);
window->SetParent(parent);
return window;
@@ -222,7 +222,7 @@ TEST_F(WindowTest, HitTest) {
Window w1(new TestWindowDelegate(SK_ColorWHITE));
w1.set_id(1);
w1.Init();
- w1.SetBounds(gfx::Rect(10, 10, 50, 50), 0);
+ w1.SetBounds(gfx::Rect(10, 10, 50, 50));
w1.SetVisibility(Window::VISIBILITY_SHOWN);
w1.SetParent(NULL);
« no previous file with comments | « ui/aura/window.cc ('k') | ui/aura_shell/desktop_layout_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698