| Index: extensions/renderer/module_system.cc
|
| diff --git a/extensions/renderer/module_system.cc b/extensions/renderer/module_system.cc
|
| index 21883412334a8edf57280f5eafde55174142f36d..db68f51cccb74c655fb2f133456bb699606cf7c9 100644
|
| --- a/extensions/renderer/module_system.cc
|
| +++ b/extensions/renderer/module_system.cc
|
| @@ -72,7 +72,7 @@ class DefaultExceptionHandler : public ModuleSystem::ExceptionHandler {
|
| // Fatally dumps the debug info from |try_catch| to the console.
|
| // Make sure this is never used for exceptions that originate in external
|
| // code!
|
| - virtual void HandleUncaughtException(const v8::TryCatch& try_catch) OVERRIDE {
|
| + virtual void HandleUncaughtException(const v8::TryCatch& try_catch) override {
|
| v8::HandleScope handle_scope(context_->isolate());
|
| std::string stack_trace = "<stack trace unavailable>";
|
| if (!try_catch.StackTrace().IsEmpty()) {
|
|
|