Index: components/dom_distiller/core/distilled_page_prefs_unittests.cc |
diff --git a/components/dom_distiller/core/distilled_page_prefs_unittests.cc b/components/dom_distiller/core/distilled_page_prefs_unittests.cc |
index fe9df73096afb6455f84eb04f7ed923707b2b16a..665fbc94f10b70e36e4bb7d94607955f99cee973 100644 |
--- a/components/dom_distiller/core/distilled_page_prefs_unittests.cc |
+++ b/components/dom_distiller/core/distilled_page_prefs_unittests.cc |
@@ -20,13 +20,13 @@ class TestingObserver : public DistilledPagePrefs::Observer { |
theme_(DistilledPagePrefs::LIGHT) {} |
virtual void OnChangeFontFamily( |
- DistilledPagePrefs::FontFamily new_font) OVERRIDE { |
+ DistilledPagePrefs::FontFamily new_font) override { |
font_ = new_font; |
} |
DistilledPagePrefs::FontFamily GetFontFamily() { return font_; } |
- virtual void OnChangeTheme(DistilledPagePrefs::Theme new_theme) OVERRIDE { |
+ virtual void OnChangeTheme(DistilledPagePrefs::Theme new_theme) override { |
theme_ = new_theme; |
} |
@@ -41,7 +41,7 @@ class TestingObserver : public DistilledPagePrefs::Observer { |
class DistilledPagePrefsTest : public testing::Test { |
protected: |
- virtual void SetUp() OVERRIDE { |
+ virtual void SetUp() override { |
pref_service_.reset(new user_prefs::TestingPrefServiceSyncable()); |
DistilledPagePrefs::RegisterProfilePrefs(pref_service_->registry()); |
distilled_page_prefs_.reset(new DistilledPagePrefs(pref_service_.get())); |