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

Unified Diff: athena/extensions/test/test_extensions_delegate.cc

Issue 623103002: replace OVERRIDE and FINAL with override and final in athena/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master 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/extensions_delegate_impl.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 d22bf29430d69ebc4463bc115157bbf27aec713a..0d0740abec15e33a3aeed76da66bdb958948a3db 100644
--- a/athena/extensions/test/test_extensions_delegate.cc
+++ b/athena/extensions/test/test_extensions_delegate.cc
@@ -17,14 +17,14 @@ class TestExtensionsDelegate : public ExtensionsDelegate {
private:
// ExtensionsDelegate:
- virtual content::BrowserContext* GetBrowserContext() const OVERRIDE {
+ virtual content::BrowserContext* GetBrowserContext() const override {
return NULL;
}
- virtual const extensions::ExtensionSet& GetInstalledExtensions() OVERRIDE {
+ virtual 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; }
+ virtual bool LaunchApp(const std::string& app_id) override { return true; }
+ virtual bool UnloadApp(const std::string& app_id) override { return false; }
extensions::ExtensionSet shell_extensions_;
« no previous file with comments | « athena/extensions/shell/extensions_delegate_impl.cc ('k') | athena/home/app_list_view_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698