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

Unified Diff: cc/scheduler/commit_earlyout_reason.h

Issue 895853003: Update from https://crrev.com/314320 (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 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
« no previous file with comments | « cc/scheduler/begin_frame_source.cc ('k') | cc/scheduler/delay_based_time_source.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/scheduler/commit_earlyout_reason.h
diff --git a/cc/scheduler/commit_earlyout_reason.h b/cc/scheduler/commit_earlyout_reason.h
index b45e96f592a42d98ed49770ad89041c8ec22d881..14aaeb3b7d919c765f665f16de0454b43e5af9f5 100644
--- a/cc/scheduler/commit_earlyout_reason.h
+++ b/cc/scheduler/commit_earlyout_reason.h
@@ -12,6 +12,7 @@ namespace cc {
enum class CommitEarlyOutReason {
ABORTED_OUTPUT_SURFACE_LOST,
ABORTED_NOT_VISIBLE,
+ ABORTED_DEFERRED_COMMIT,
FINISHED_NO_UPDATES,
};
@@ -21,6 +22,8 @@ inline const char* CommitEarlyOutReasonToString(CommitEarlyOutReason reason) {
return "CommitEarlyOutReason::ABORTED_OUTPUT_SURFACE_LOST";
case CommitEarlyOutReason::ABORTED_NOT_VISIBLE:
return "CommitEarlyOutReason::ABORTED_NOT_VISIBLE";
+ case CommitEarlyOutReason::ABORTED_DEFERRED_COMMIT:
+ return "CommitEarlyOutReason::ABORTED_DEFERRED_COMMIT";
case CommitEarlyOutReason::FINISHED_NO_UPDATES:
return "CommitEarlyOutReason::FINISHED_NO_UPDATES";
}
« no previous file with comments | « cc/scheduler/begin_frame_source.cc ('k') | cc/scheduler/delay_based_time_source.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698