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

Side by Side Diff: ui/compositor/compositor.cc

Issue 791373003: Add Set Authoritative VSync Interval function (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years 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
« cc/trees/thread_proxy.cc ('K') | « ui/compositor/compositor.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "ui/compositor/compositor.h" 5 #include "ui/compositor/compositor.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <deque> 8 #include <deque>
9 9
10 #include "base/bind.h" 10 #include "base/bind.h"
(...skipping 471 matching lines...) Expand 10 before | Expand all | Expand 10 after
482 482
483 // Call ScheduleDraw() instead of Draw() in order to allow other 483 // Call ScheduleDraw() instead of Draw() in order to allow other
484 // CompositorObservers to be notified before starting another 484 // CompositorObservers to be notified before starting another
485 // draw cycle. 485 // draw cycle.
486 ScheduleDraw(); 486 ScheduleDraw();
487 } 487 }
488 FOR_EACH_OBSERVER( 488 FOR_EACH_OBSERVER(
489 CompositorObserver, observer_list_, OnCompositingEnded(this)); 489 CompositorObserver, observer_list_, OnCompositingEnded(this));
490 } 490 }
491 491
492 void Compositor::SetAuthoritativeVSyncInterval(base::TimeDelta interval) const {
493 host_->SetAuthoritativeVSyncInterval(interval);
494 }
495
492 } // namespace ui 496 } // namespace ui
OLDNEW
« cc/trees/thread_proxy.cc ('K') | « ui/compositor/compositor.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698