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

Unified Diff: chrome/browser/chromeos/login/screenshot_testing/screenshot_testing_mixin.h

Issue 856493004: Update {virtual,override,final} to follow C++11 style in chrome/browser/chromeos/login. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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: chrome/browser/chromeos/login/screenshot_testing/screenshot_testing_mixin.h
diff --git a/chrome/browser/chromeos/login/screenshot_testing/screenshot_testing_mixin.h b/chrome/browser/chromeos/login/screenshot_testing/screenshot_testing_mixin.h
index df1a8b573a3ce7f4dfe004009d472d7838692f4b..5d1c0c25020fa890f8f04c23c00a0c344aa9a7b2 100644
--- a/chrome/browser/chromeos/login/screenshot_testing/screenshot_testing_mixin.h
+++ b/chrome/browser/chromeos/login/screenshot_testing/screenshot_testing_mixin.h
@@ -22,13 +22,13 @@ namespace chromeos {
class ScreenshotTestingMixin : public MixinBasedBrowserTest::Mixin {
public:
ScreenshotTestingMixin();
- virtual ~ScreenshotTestingMixin();
+ ~ScreenshotTestingMixin() override;
// Override from BrowsertestBase::Mixin.
- virtual void SetUpInProcessBrowserTestFixture() override;
+ void SetUpInProcessBrowserTestFixture() override;
// Override from BrowsertestBase::Mixin.
- virtual void SetUpCommandLine(base::CommandLine* command_line) override;
+ void SetUpCommandLine(base::CommandLine* command_line) override;
// Runs screenshot testing if it is turned on by command line switches.
void RunScreenshotTesting(const std::string& test_name);

Powered by Google App Engine
This is Rietveld 408576698