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

Unified Diff: athena/extensions/test/test_extensions_delegate.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/extensions/shell/url_search_provider.cc ('k') | athena/home/app_list_view_delegate.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: athena/extensions/test/test_extensions_delegate.cc
diff --git a/athena/extensions/test/test_extensions_delegate.cc b/athena/extensions/test/test_extensions_delegate.cc
index 540a78ba721bc3ff424225bf61efb73784fe34a9..bb0c1b58daa3a61688b1bc83c81b4917129d2ce8 100644
--- a/athena/extensions/test/test_extensions_delegate.cc
+++ b/athena/extensions/test/test_extensions_delegate.cc
@@ -14,20 +14,20 @@ class TestExtensionsDelegate : public ExtensionsDelegate {
public:
TestExtensionsDelegate() {}
- virtual ~TestExtensionsDelegate() {}
+ ~TestExtensionsDelegate() override {}
private:
// ExtensionsDelegate:
- virtual content::BrowserContext* GetBrowserContext() const override {
+ content::BrowserContext* GetBrowserContext() const override {
return nullptr;
}
- virtual const extensions::ExtensionSet& GetInstalledExtensions() override {
+ const extensions::ExtensionSet& GetInstalledExtensions() override {
return shell_extensions_;
}
- virtual bool LaunchApp(const std::string& app_id) override { return true; }
- virtual bool UnloadApp(const std::string& app_id) override { return false; }
+ bool LaunchApp(const std::string& app_id) override { return true; }
+ bool UnloadApp(const std::string& app_id) override { return false; }
- virtual scoped_ptr<extensions::ExtensionInstallUI> CreateExtensionInstallUI()
+ scoped_ptr<extensions::ExtensionInstallUI> CreateExtensionInstallUI()
override {
return scoped_ptr<extensions::ExtensionInstallUI>();
}
« no previous file with comments | « athena/extensions/shell/url_search_provider.cc ('k') | athena/home/app_list_view_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698