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

Unified Diff: athena/test/base/sample_activity_factory.h

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/test/base/sample_activity_factory.h
diff --git a/athena/test/base/sample_activity_factory.h b/athena/test/base/sample_activity_factory.h
index 7eef19b7e64f8a885f98e8e0924582ef9af17b35..83b057ad1018502d5ef87c629b229da35b392a4d 100644
--- a/athena/test/base/sample_activity_factory.h
+++ b/athena/test/base/sample_activity_factory.h
@@ -14,14 +14,14 @@ namespace test {
class SampleActivityFactory : public ActivityFactory {
public:
SampleActivityFactory();
- virtual ~SampleActivityFactory();
+ ~SampleActivityFactory() override;
// Overridden from ActivityFactory:
- virtual Activity* CreateWebActivity(content::BrowserContext* browser_context,
+ Activity* CreateWebActivity(content::BrowserContext* browser_context,
const base::string16& title,
const GURL& url) override;
- virtual Activity* CreateWebActivity(content::WebContents* contents) override;
- virtual Activity* CreateAppActivity(const std::string& app_id,
+ Activity* CreateWebActivity(content::WebContents* contents) override;
+ Activity* CreateAppActivity(const std::string& app_id,
views::WebView* web_view) override;
private:

Powered by Google App Engine
This is Rietveld 408576698