Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 Loading... | |
| 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 |
| OLD | NEW |