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

Unified Diff: content/child/blink_platform_impl_unittest.cc

Issue 1091093006: Update {virtual,override} to follow C++11 style in content. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Back out some webrtc files. Created 5 years, 8 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: content/child/blink_platform_impl_unittest.cc
diff --git a/content/child/blink_platform_impl_unittest.cc b/content/child/blink_platform_impl_unittest.cc
index c1b6a8e405e2bb5a9e5e07dfcb2d6749cc1bdf2d..01a3b9180be09a8ef114dc88af6967feba5ba972 100644
--- a/content/child/blink_platform_impl_unittest.cc
+++ b/content/child/blink_platform_impl_unittest.cc
@@ -19,7 +19,7 @@ class TestBlinkPlatformImpl : public BlinkPlatformImpl {
TestBlinkPlatformImpl() : mock_monotonically_increasing_time_(0) {}
// Returns mock time when enabled.
- virtual double monotonicallyIncreasingTime() override {
+ double monotonicallyIncreasingTime() override {
if (mock_monotonically_increasing_time_ > 0.0)
return mock_monotonically_increasing_time_;
return BlinkPlatformImpl::monotonicallyIncreasingTime();

Powered by Google App Engine
This is Rietveld 408576698