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

Unified Diff: athena/content/content_activity_factory.h

Issue 641683003: C++11 override style change for athena (Closed) Base URL: https://chromium.googlesource.com/chromium/src@master
Patch Set: rebase 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
« no previous file with comments | « athena/content/chrome/web_activity_helpers_browsertest.cc ('k') | athena/content/content_proxy.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: athena/content/content_activity_factory.h
diff --git a/athena/content/content_activity_factory.h b/athena/content/content_activity_factory.h
index 087c3aa685ab98177713adb75060ea7c9b1d4520..17f707025c52c6cfacab198f37aa093da4804673 100644
--- a/athena/content/content_activity_factory.h
+++ b/athena/content/content_activity_factory.h
@@ -13,15 +13,15 @@ namespace athena {
class ContentActivityFactory : public ActivityFactory {
public:
ContentActivityFactory();
- virtual ~ContentActivityFactory();
+ ~ContentActivityFactory() override;
// Overridden from ActivityFactory:
- virtual 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,
- views::WebView* web_view) override;
+ Activity* CreateWebActivity(content::BrowserContext* browser_context,
+ const base::string16& title,
+ const GURL& url) override;
+ Activity* CreateWebActivity(content::WebContents* contents) override;
+ Activity* CreateAppActivity(const std::string& app_id,
+ views::WebView* web_view) override;
private:
DISALLOW_COPY_AND_ASSIGN(ContentActivityFactory);
« no previous file with comments | « athena/content/chrome/web_activity_helpers_browsertest.cc ('k') | athena/content/content_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698