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

Unified Diff: Source/bindings/modules/v8/ModuleBindingsInitializer.cpp

Issue 618373003: [bindings] partial interfaces should not violate componentization (Closed) Base URL: svn://svn.chromium.org/blink/trunk
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
Index: Source/bindings/modules/v8/ModuleBindingsInitializer.cpp
diff --git a/Source/bindings/modules/v8/ModuleBindingsInitializer.cpp b/Source/bindings/modules/v8/ModuleBindingsInitializer.cpp
index fcf86c7416092db98bd79a2c7541467745ececd0..bcbaa5bc0f56e70a9ab71da91e63c35a2d7825b9 100644
--- a/Source/bindings/modules/v8/ModuleBindingsInitializer.cpp
+++ b/Source/bindings/modules/v8/ModuleBindingsInitializer.cpp
@@ -12,6 +12,10 @@
namespace blink {
+// initModulesPartialInterfaces is generated by
+// generate_init_partial_interfaces.py.
+void initModulesPartialInterfaces();
haraken 2014/10/16 04:24:07 initModulesPartialInterfaces() => initModulesForPa
tasak 2014/10/17 07:38:16 Done.
+
static void didLeaveScriptContextForModule(v8::Isolate* isolate)
{
// Indexed DB requires that transactions are created with an internal |active| flag
@@ -22,6 +26,7 @@ static void didLeaveScriptContextForModule(v8::Isolate* isolate)
void ModuleBindingsInitializer::init()
{
ModuleProxy::moduleProxy().registerDidLeaveScriptContextForRecursionScope(didLeaveScriptContextForModule);
+ initModulesPartialInterfaces();
}
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698