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

Unified Diff: extensions/browser/extension_error.h

Issue 622343002: replace OVERRIDE and FINAL with override and final in 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
« no previous file with comments | « extensions/browser/event_router_unittest.cc ('k') | extensions/browser/extension_function.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/browser/extension_error.h
diff --git a/extensions/browser/extension_error.h b/extensions/browser/extension_error.h
index ea3c0827fefe17181b8f245eda1789902e51adb9..0fc0ee55b951ea68c9e4a57bb2ac4ce0ec2c3111 100644
--- a/extensions/browser/extension_error.h
+++ b/extensions/browser/extension_error.h
@@ -96,9 +96,9 @@ class ManifestError : public ExtensionError {
const base::string16& manifest_specific);
virtual ~ManifestError();
- virtual scoped_ptr<base::DictionaryValue> ToValue() const OVERRIDE;
+ virtual scoped_ptr<base::DictionaryValue> ToValue() const override;
- virtual std::string PrintForTest() const OVERRIDE;
+ virtual std::string PrintForTest() const override;
const base::string16& manifest_key() const { return manifest_key_; }
const base::string16& manifest_specific() const { return manifest_specific_; }
@@ -108,7 +108,7 @@ class ManifestError : public ExtensionError {
static const char kManifestSpecificKey[];
private:
- virtual bool IsEqualImpl(const ExtensionError* rhs) const OVERRIDE;
+ virtual bool IsEqualImpl(const ExtensionError* rhs) const override;
// If present, this indicates the feature in the manifest which caused the
// error.
@@ -133,9 +133,9 @@ class RuntimeError : public ExtensionError {
int render_process_id);
virtual ~RuntimeError();
- virtual scoped_ptr<base::DictionaryValue> ToValue() const OVERRIDE;
+ virtual scoped_ptr<base::DictionaryValue> ToValue() const override;
- virtual std::string PrintForTest() const OVERRIDE;
+ virtual std::string PrintForTest() const override;
const GURL& context_url() const { return context_url_; }
const StackTrace& stack_trace() const { return stack_trace_; }
@@ -153,7 +153,7 @@ class RuntimeError : public ExtensionError {
static const char kRenderViewIdKey[];
private:
- virtual bool IsEqualImpl(const ExtensionError* rhs) const OVERRIDE;
+ virtual bool IsEqualImpl(const ExtensionError* rhs) const override;
// Since we piggy-back onto other error reporting systems (like V8 and
// WebKit), the reported information may need to be cleaned up in order to be
« no previous file with comments | « extensions/browser/event_router_unittest.cc ('k') | extensions/browser/extension_function.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698