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

Unified Diff: third_party/WebKit/Source/core/layout/ImageQualityControllerTest.cpp

Issue 2148363004: Use std::unique_ptr<> for WebTaskRunner::clone (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 5 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/core/layout/ImageQualityControllerTest.cpp
diff --git a/third_party/WebKit/Source/core/layout/ImageQualityControllerTest.cpp b/third_party/WebKit/Source/core/layout/ImageQualityControllerTest.cpp
index 15b8e27b665259418f13fbb3ddd52c5f0c3f8e2f..4ad63e8ced4f1a95090125af45e61f364d933add 100644
--- a/third_party/WebKit/Source/core/layout/ImageQualityControllerTest.cpp
+++ b/third_party/WebKit/Source/core/layout/ImageQualityControllerTest.cpp
@@ -133,7 +133,7 @@ private:
}
bool runsTasksOnCurrentThread() override { return true; }
- WebTaskRunner* clone() override { return nullptr; }
+ std::unique_ptr<WebTaskRunner> clone() override { return nullptr; }
double virtualTimeSeconds() const override { return 0.0; }
double monotonicallyIncreasingVirtualTimeSeconds() const override { return m_time; }

Powered by Google App Engine
This is Rietveld 408576698