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

Unified Diff: chrome/browser/extensions/extension_function_test_utils.cc

Issue 624153002: replace OVERRIDE and FINAL with override and final in chrome/browser/extensions/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@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: chrome/browser/extensions/extension_function_test_utils.cc
diff --git a/chrome/browser/extensions/extension_function_test_utils.cc b/chrome/browser/extensions/extension_function_test_utils.cc
index 503709b1a5ac7ac4e1d25bea9aac6bcb582074e4..1d3b84a52bbc7a6784d50b6bea3f15dd8ab1aebd 100644
--- a/chrome/browser/extensions/extension_function_test_utils.cc
+++ b/chrome/browser/extensions/extension_function_test_utils.cc
@@ -36,11 +36,11 @@ class TestFunctionDispatcherDelegate
private:
virtual extensions::WindowController* GetExtensionWindowController()
- const OVERRIDE {
+ const override {
return browser_->extension_window_controller();
}
- virtual WebContents* GetAssociatedWebContents() const OVERRIDE {
+ virtual WebContents* GetAssociatedWebContents() const override {
return NULL;
}
@@ -211,7 +211,7 @@ class SendResponseDelegate
virtual void OnSendResponse(UIThreadExtensionFunction* function,
bool success,
- bool bad_message) OVERRIDE {
+ bool bad_message) override {
ASSERT_FALSE(bad_message);
ASSERT_FALSE(HasResponse());
response_.reset(new bool);
« no previous file with comments | « chrome/browser/extensions/extension_error_ui_default.h ('k') | chrome/browser/extensions/extension_garbage_collector.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698