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

Unified Diff: athena/content/content_proxy_browsertest.cc

Issue 641683003: C++11 override style change for athena (Closed) Base URL: https://chromium.googlesource.com/chromium/src@master
Patch Set: Created 6 years, 2 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: athena/content/content_proxy_browsertest.cc
diff --git a/athena/content/content_proxy_browsertest.cc b/athena/content/content_proxy_browsertest.cc
index 9891bae7ca1fd2d3a76b3607a09f01b44f995f1d..210ee6d43c03dd95491ce1eab2e34df0f33288dd 100644
--- a/athena/content/content_proxy_browsertest.cc
+++ b/athena/content/content_proxy_browsertest.cc
@@ -25,10 +25,10 @@ const char kTestUrl[] = "chrome:about";
class ContentProxyBrowserTest : public AthenaBrowserTest {
public:
ContentProxyBrowserTest() {}
- virtual ~ContentProxyBrowserTest() {}
+ ~ContentProxyBrowserTest() override {}
// AthenaBrowserTest:
- virtual void SetUpCommandLine(CommandLine* command_line) override {
+ void SetUpCommandLine(CommandLine* command_line) override {
// Make sure that we draw the output - it's required for this test.
command_line->AppendSwitch(switches::kEnablePixelOutputInTests);
AthenaBrowserTest::SetUpCommandLine(command_line);

Powered by Google App Engine
This is Rietveld 408576698