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

Unified Diff: cc/scheduler/begin_frame_source.cc

Issue 1050833002: cc: Remove background ticking from LTHI. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 9 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 | cc/scheduler/scheduler.h » ('j') | cc/scheduler/scheduler.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/scheduler/begin_frame_source.cc
diff --git a/cc/scheduler/begin_frame_source.cc b/cc/scheduler/begin_frame_source.cc
index 42b8f6f1c735db05dfca52c00ed6070bb8b63a36..78fd3171601ac7f60b7163c18a3b1828625e161e 100644
--- a/cc/scheduler/begin_frame_source.cc
+++ b/cc/scheduler/begin_frame_source.cc
@@ -311,11 +311,8 @@ void BeginFrameSourceMultiplexer::SetMinimumInterval(
}
void BeginFrameSourceMultiplexer::AddSource(BeginFrameSource* new_source) {
- DEBUG_FRAMES("BeginFrameSourceMultiplexer::AddSource",
- "current active",
- active_source_,
- "source to remove",
- new_source);
+ DEBUG_FRAMES("BeginFrameSourceMultiplexer::AddSource", "current active",
+ active_source_, "source to be added", new_source);
DCHECK(new_source);
DCHECK(!HasSource(new_source));
@@ -328,11 +325,8 @@ void BeginFrameSourceMultiplexer::AddSource(BeginFrameSource* new_source) {
void BeginFrameSourceMultiplexer::RemoveSource(
BeginFrameSource* existing_source) {
- DEBUG_FRAMES("BeginFrameSourceMultiplexer::RemoveSource",
- "current active",
- active_source_,
- "source to remove",
- existing_source);
+ DEBUG_FRAMES("BeginFrameSourceMultiplexer::RemoveSource", "current active",
+ active_source_, "source to be removed", existing_source);
DCHECK(existing_source);
DCHECK(HasSource(existing_source));
DCHECK_NE(existing_source, active_source_);
« no previous file with comments | « no previous file | cc/scheduler/scheduler.h » ('j') | cc/scheduler/scheduler.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698