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

Unified Diff: third_party/WebKit/Source/platform/graphics/RecordingImageBufferSurfaceTest.cpp

Issue 1646583002: [Reland] Per WebViewScheduler virtual time (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix compile Created 4 years, 10 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
Index: third_party/WebKit/Source/platform/graphics/RecordingImageBufferSurfaceTest.cpp
diff --git a/third_party/WebKit/Source/platform/graphics/RecordingImageBufferSurfaceTest.cpp b/third_party/WebKit/Source/platform/graphics/RecordingImageBufferSurfaceTest.cpp
index fc35e5390da07690dfada324fd7a3ee3a14cc89f..2cb353f720be9162715bacdefa0df9443c05a1bb 100644
--- a/third_party/WebKit/Source/platform/graphics/RecordingImageBufferSurfaceTest.cpp
+++ b/third_party/WebKit/Source/platform/graphics/RecordingImageBufferSurfaceTest.cpp
@@ -263,6 +263,18 @@ private:
return nullptr;
}
+ double virtualTimeSeconds() const override
+ {
+ ASSERT_NOT_REACHED();
+ return 0.0;
+ }
+
+ double monotonicallyIncreasingVirtualTimeSeconds() const override
+ {
+ ASSERT_NOT_REACHED();
+ return 0.0;
+ }
+
Task* m_task;
};

Powered by Google App Engine
This is Rietveld 408576698