| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/renderer/extensions/module_system.h" | 5 #include "chrome/renderer/extensions/module_system.h" |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "third_party/WebKit/Source/WebKit/chromium/public/WebScopedMicrotaskSup
pression.h" | 8 #include "third_party/WebKit/Source/WebKit/chromium/public/WebScopedMicrotaskSup
pression.h" |
| 9 | 9 |
| 10 namespace { | 10 namespace { |
| 11 | 11 |
| 12 const char* kModuleSystem = "module_system"; | 12 const char* kModuleSystem = "module_system"; |
| 13 const char* kModuleName = "module_name"; | 13 const char* kModuleName = "module_name"; |
| 14 const char* kModuleField = "module_field"; | 14 const char* kModuleField = "module_field"; |
| 15 const char* kModulesField = "modules"; | 15 const char* kModulesField = "modules"; |
| 16 | 16 |
| 17 } // namespace | 17 } // namespace |
| 18 | 18 |
| 19 namespace extensions { | 19 namespace extensions { |
| 20 | 20 |
| 21 ModuleSystem::ModuleSystem(v8::Handle<v8::Context> context, | 21 ModuleSystem::ModuleSystem(v8::Handle<v8::Context> context, |
| 22 SourceMap* source_map) | 22 SourceMap* source_map) |
| 23 : context_(v8::Persistent<v8::Context>::New(context)), | 23 : context_(v8::Persistent<v8::Context>::New(context)), |
| 24 source_map_(source_map), | 24 source_map_(source_map), |
| 25 natives_enabled_(0) { | 25 natives_enabled_(0) { |
| 26 RouteFunction("require", | 26 RouteFunction("require", |
| 27 base::Bind(&ModuleSystem::RequireForJs, base::Unretained(this))); | 27 base::Bind(&ModuleSystem::RequireForJs, base::Unretained(this))); |
| (...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 297 v8::Handle<v8::String> right = v8::String::New("\n})"); | 297 v8::Handle<v8::String> right = v8::String::New("\n})"); |
| 298 return handle_scope.Close( | 298 return handle_scope.Close( |
| 299 v8::String::Concat(left, v8::String::Concat(source, right))); | 299 v8::String::Concat(left, v8::String::Concat(source, right))); |
| 300 } | 300 } |
| 301 | 301 |
| 302 v8::Handle<v8::Value> ModuleSystem::ThrowException(const std::string& message) { | 302 v8::Handle<v8::Value> ModuleSystem::ThrowException(const std::string& message) { |
| 303 return v8::ThrowException(v8::String::New(message.c_str())); | 303 return v8::ThrowException(v8::String::New(message.c_str())); |
| 304 } | 304 } |
| 305 | 305 |
| 306 } // extensions | 306 } // extensions |
| OLD | NEW |