Chromium Code Reviews| Index: extensions/renderer/module_system_test.cc |
| diff --git a/extensions/renderer/module_system_test.cc b/extensions/renderer/module_system_test.cc |
| index 04de2b1a45ec5219b7ef52207365aa31b4b64750..72a14727c713b3bba21c7f2d40f1f20f20d85cb6 100644 |
| --- a/extensions/renderer/module_system_test.cc |
| +++ b/extensions/renderer/module_system_test.cc |
| @@ -27,6 +27,7 @@ namespace { |
| class FailsOnException : public ModuleSystem::ExceptionHandler { |
| public: |
| + FailsOnException() : ModuleSystem::ExceptionHandler(NULL) {} |
|
not at google - send to devlin
2015/06/12 16:51:37
nullptr. In fact you might as well s/NULL/nullptr/
bashi
2015/06/16 03:12:47
Done.
|
| void HandleUncaughtException(const v8::TryCatch& try_catch) override { |
| FAIL() << "Uncaught exception: " << CreateExceptionString(try_catch); |
| } |