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

Side by Side Diff: cc/trees/thread_proxy.cc

Issue 715733002: [Android] Show autofill popup after animation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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 unified diff | Download patch
OLDNEW
1 // Copyright 2011 The Chromium Authors. All rights reserved. 1 // Copyright 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "cc/trees/thread_proxy.h" 5 #include "cc/trees/thread_proxy.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <string> 8 #include <string>
9 9
10 #include "base/auto_reset.h" 10 #include "base/auto_reset.h"
(...skipping 1321 matching lines...) Expand 10 before | Expand all | Expand 10 after
1332 } 1332 }
1333 1333
1334 impl().timing_history.DidActivateSyncTree(); 1334 impl().timing_history.DidActivateSyncTree();
1335 } 1335 }
1336 1336
1337 void ThreadProxy::DidManageTiles() { 1337 void ThreadProxy::DidManageTiles() {
1338 DCHECK(IsImplThread()); 1338 DCHECK(IsImplThread());
1339 impl().scheduler->DidManageTiles(); 1339 impl().scheduler->DidManageTiles();
1340 } 1340 }
1341 1341
1342 void ThreadProxy::DidCompletePageScaleAnimationBeforeCommit() {
aelias_OOO_until_Jul13 2014/11/22 03:38:11 This is called from the impl thread, so it should
please use gerrit instead 2014/11/24 20:22:31 Done.
1343 layer_tree_host()->DidCompletePageScaleAnimationBeforeCommit();
aelias_OOO_until_Jul13 2014/11/22 03:38:11 You shouldn't directly access the LayerTreeHost fr
please use gerrit instead 2014/11/24 20:22:31 Done.
1344 }
1345
1342 } // namespace cc 1346 } // namespace cc
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698