Chromium Code Reviews| Index: extensions/renderer/module_system.cc |
| diff --git a/extensions/renderer/module_system.cc b/extensions/renderer/module_system.cc |
| index 2349218a544884d9bd8b341915c78bcb5a4b8c03..72b32387d1124194e3e114be19d4e3268db26680 100644 |
| --- a/extensions/renderer/module_system.cc |
| +++ b/extensions/renderer/module_system.cc |
| @@ -697,6 +697,7 @@ v8::Local<v8::Value> ModuleSystem::LoadModule(const std::string& module_name) { |
| v8::Local<v8::Value> ModuleSystem::LoadModuleWithNativeAPIBridge( |
| const std::string& module_name, |
| v8::Local<v8::Value> api_bridge) { |
| + LOG(WARNING) << "Module: " << module_name; |
|
lazyboy
2017/06/27 17:47:22
Remove this debug logs.
Devlin
2017/06/28 18:25:48
Whoops! Thought I did that. Done.
|
| v8::EscapableHandleScope handle_scope(GetIsolate()); |
| v8::Local<v8::Context> v8_context = context()->v8_context(); |
| v8::Context::Scope context_scope(v8_context); |