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

Unified Diff: cc/scheduler/commit_earlyout_reason.h

Issue 2337913003: Fork cc::OutputSurface into cc::CompositorFrameSink. (Closed)
Patch Set: cfsfork: android-vulkan Created 4 years, 3 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/resources/video_resource_updater_unittest.cc ('k') | cc/scheduler/commit_earlyout_reason.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 f9346d8737043cf4d74bdfd86a5418f98c53e4bc..172288cf21702a0f3b9963796959c95e54572e3d 100644
--- a/cc/scheduler/commit_earlyout_reason.h
+++ b/cc/scheduler/commit_earlyout_reason.h
@@ -15,7 +15,7 @@ class CommitEarlyOutReason;
}
enum class CommitEarlyOutReason {
- ABORTED_OUTPUT_SURFACE_LOST,
+ ABORTED_COMPOSITOR_FRAME_SINK_LOST,
ABORTED_NOT_VISIBLE,
ABORTED_DEFERRED_COMMIT,
FINISHED_NO_UPDATES,
@@ -31,8 +31,8 @@ CC_EXPORT void CommitEarlyOutReasonToProtobuf(
inline const char* CommitEarlyOutReasonToString(CommitEarlyOutReason reason) {
switch (reason) {
- case CommitEarlyOutReason::ABORTED_OUTPUT_SURFACE_LOST:
- return "CommitEarlyOutReason::ABORTED_OUTPUT_SURFACE_LOST";
+ case CommitEarlyOutReason::ABORTED_COMPOSITOR_FRAME_SINK_LOST:
+ return "CommitEarlyOutReason::ABORTED_COMPOSITOR_FRAME_SINK_LOST";
case CommitEarlyOutReason::ABORTED_NOT_VISIBLE:
return "CommitEarlyOutReason::ABORTED_NOT_VISIBLE";
case CommitEarlyOutReason::ABORTED_DEFERRED_COMMIT:
« no previous file with comments | « cc/resources/video_resource_updater_unittest.cc ('k') | cc/scheduler/commit_earlyout_reason.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698