Index: extensions/browser/api/declarative/declarative_api.h |
diff --git a/extensions/browser/api/declarative/declarative_api.h b/extensions/browser/api/declarative/declarative_api.h |
index 72180dd0448712182a830f9cc27b9d4a12120eb4..acc2edf4c81e9c666deb0491126f1fa435d239d0 100644 |
--- a/extensions/browser/api/declarative/declarative_api.h |
+++ b/extensions/browser/api/declarative/declarative_api.h |
@@ -20,8 +20,8 @@ class RulesFunction : public AsyncExtensionFunction { |
virtual ~RulesFunction(); |
// ExtensionFunction: |
- virtual bool HasPermission() OVERRIDE; |
- virtual bool RunAsync() OVERRIDE; |
+ virtual bool HasPermission() override; |
+ virtual bool RunAsync() override; |
// Concrete implementation of the RulesFunction that is being called |
// on the thread on which the respective RulesRegistry lives. |
@@ -39,7 +39,7 @@ class EventsEventAddRulesFunction : public RulesFunction { |
virtual ~EventsEventAddRulesFunction() {} |
// RulesFunction: |
- virtual bool RunAsyncOnCorrectThread() OVERRIDE; |
+ virtual bool RunAsyncOnCorrectThread() override; |
}; |
class EventsEventRemoveRulesFunction : public RulesFunction { |
@@ -50,7 +50,7 @@ class EventsEventRemoveRulesFunction : public RulesFunction { |
virtual ~EventsEventRemoveRulesFunction() {} |
// RulesFunction: |
- virtual bool RunAsyncOnCorrectThread() OVERRIDE; |
+ virtual bool RunAsyncOnCorrectThread() override; |
}; |
class EventsEventGetRulesFunction : public RulesFunction { |
@@ -61,7 +61,7 @@ class EventsEventGetRulesFunction : public RulesFunction { |
virtual ~EventsEventGetRulesFunction() {} |
// RulesFunction: |
- virtual bool RunAsyncOnCorrectThread() OVERRIDE; |
+ virtual bool RunAsyncOnCorrectThread() override; |
}; |
} // namespace extensions |