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

Unified Diff: ui/aura/demo/demo_main.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 | « no previous file | ui/aura/desktop.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/aura/demo/demo_main.cc
diff --git a/ui/aura/demo/demo_main.cc b/ui/aura/demo/demo_main.cc
index 4230f7357ea442e6632d47e4b584759c61acaad5..e970f14bbf627140cbc92ac99d2f5e05eb8b7ad0 100644
--- a/ui/aura/demo/demo_main.cc
+++ b/ui/aura/demo/demo_main.cc
@@ -86,7 +86,7 @@ int main(int argc, char** argv) {
aura::Window window1(&window_delegate1);
window1.set_id(1);
window1.Init();
- window1.SetBounds(gfx::Rect(100, 100, 400, 400), 0);
+ window1.SetBounds(gfx::Rect(100, 100, 400, 400));
window1.SetVisibility(aura::Window::VISIBILITY_SHOWN);
window1.SetParent(NULL);
@@ -94,7 +94,7 @@ int main(int argc, char** argv) {
aura::Window window2(&window_delegate2);
window2.set_id(2);
window2.Init();
- window2.SetBounds(gfx::Rect(200, 200, 350, 350), 0);
+ window2.SetBounds(gfx::Rect(200, 200, 350, 350));
window2.SetVisibility(aura::Window::VISIBILITY_SHOWN);
window2.SetParent(NULL);
@@ -102,7 +102,7 @@ int main(int argc, char** argv) {
aura::Window window3(&window_delegate3);
window3.set_id(3);
window3.Init();
- window3.SetBounds(gfx::Rect(10, 10, 50, 50), 0);
+ window3.SetBounds(gfx::Rect(10, 10, 50, 50));
window3.SetVisibility(aura::Window::VISIBILITY_SHOWN);
window3.SetParent(&window2);
« no previous file with comments | « no previous file | ui/aura/desktop.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698