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

Unified Diff: athena/content/app_registry_impl.cc

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/app_activity_unittest.cc ('k') | athena/content/chrome/web_activity_helpers_browsertest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: athena/content/app_registry_impl.cc
diff --git a/athena/content/app_registry_impl.cc b/athena/content/app_registry_impl.cc
index 599934d9a815726098f059f2f80bdc0b7b7c1c5a..9f89c3706cd99fdc96ed96b67ab845f129123d1f 100644
--- a/athena/content/app_registry_impl.cc
+++ b/athena/content/app_registry_impl.cc
@@ -12,17 +12,16 @@ namespace athena {
class AppRegistryImpl : public AppRegistry {
public:
AppRegistryImpl();
- virtual ~AppRegistryImpl();
+ ~AppRegistryImpl() override;
// AppRegistry:
- virtual AppActivityRegistry* GetAppActivityRegistry(
+ AppActivityRegistry* GetAppActivityRegistry(
const std::string& app_id,
content::BrowserContext* browser_context) override;
- virtual int NumberOfApplications() const override { return app_list_.size(); }
+ int NumberOfApplications() const override { return app_list_.size(); }
private:
- virtual void RemoveAppActivityRegistry(
- AppActivityRegistry* registry) override;
+ void RemoveAppActivityRegistry(AppActivityRegistry* registry) override;
std::vector<AppActivityRegistry*> app_list_;
« no previous file with comments | « athena/content/app_activity_unittest.cc ('k') | athena/content/chrome/web_activity_helpers_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698