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

Unified Diff: ui/aura/root_window.cc

Issue 9222018: reland -- Disable animations during aura tests. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 years, 11 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: ui/aura/root_window.cc
diff --git a/ui/aura/root_window.cc b/ui/aura/root_window.cc
index 8f5c7eecde2d90bcce77d20681a86ff045b6f8b6..8564906eae5c5a8c3e264e2d2ce3b8efc650cec0 100644
--- a/ui/aura/root_window.cc
+++ b/ui/aura/root_window.cc
@@ -653,16 +653,16 @@ void RootWindow::OnWindowAttachedToRootWindow(Window* attached) {
}
void RootWindow::OnLayerAnimationEnded(
- const ui::LayerAnimationSequence* animation) {
+ ui::LayerAnimationSequence* animation) {
OnHostResized(host_->GetSize());
}
void RootWindow::OnLayerAnimationScheduled(
- const ui::LayerAnimationSequence* animation) {
+ ui::LayerAnimationSequence* animation) {
}
void RootWindow::OnLayerAnimationAborted(
- const ui::LayerAnimationSequence* animation) {
+ ui::LayerAnimationSequence* animation) {
}
void RootWindow::SetFocusedWindow(Window* focused_window) {

Powered by Google App Engine
This is Rietveld 408576698