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

Unified Diff: extensions/renderer/module_system_test.cc

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/renderer/module_system_test.h ('k') | extensions/renderer/module_system_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/renderer/module_system_test.cc
diff --git a/extensions/renderer/module_system_test.cc b/extensions/renderer/module_system_test.cc
index c6672e77934461328d2dd6a4068b5efff9be3fa8..e01f18159edd23ddb0de66b01d9b6d8326476416 100644
--- a/extensions/renderer/module_system_test.cc
+++ b/extensions/renderer/module_system_test.cc
@@ -27,7 +27,7 @@ namespace {
class FailsOnException : public ModuleSystem::ExceptionHandler {
public:
- virtual void HandleUncaughtException(const v8::TryCatch& try_catch) OVERRIDE {
+ virtual void HandleUncaughtException(const v8::TryCatch& try_catch) override {
FAIL() << "Uncaught exception: " << CreateExceptionString(try_catch);
}
};
@@ -102,13 +102,13 @@ class ModuleSystemTestEnvironment::StringSourceMap
virtual ~StringSourceMap() {}
virtual v8::Handle<v8::Value> GetSource(v8::Isolate* isolate,
- const std::string& name) OVERRIDE {
+ const std::string& name) override {
if (source_map_.count(name) == 0)
return v8::Undefined(isolate);
return v8::String::NewFromUtf8(isolate, source_map_[name].c_str());
}
- virtual bool Contains(const std::string& name) OVERRIDE {
+ virtual bool Contains(const std::string& name) override {
return source_map_.count(name);
}
« no previous file with comments | « extensions/renderer/module_system_test.h ('k') | extensions/renderer/module_system_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698