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

Unified Diff: Source/bindings/scripts/v8_utilities.py

Issue 1129803002: IDL: Make v8_utilities.py not depend on v8_types.py (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 7 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/scripts/v8_utilities.py
diff --git a/Source/bindings/scripts/v8_utilities.py b/Source/bindings/scripts/v8_utilities.py
index 9099db15b188aa68e2735e2eb868b0bda9ee5705..48da1be37c53c041640d9ad128987ec60a48e34c 100644
--- a/Source/bindings/scripts/v8_utilities.py
+++ b/Source/bindings/scripts/v8_utilities.py
@@ -37,7 +37,6 @@ from idl_types import IdlTypeBase
import idl_types
from idl_definitions import Exposure, IdlInterface
from v8_globals import includes
-import v8_types
ACRONYMS = [
'CSSOM', # must come *before* CSS to match full acronym
@@ -132,7 +131,7 @@ def scoped_name(interface, definition, base_name):
def v8_class_name(interface):
- return v8_types.v8_type(interface.name)
+ return 'V8' + interface.name
def v8_class_name_or_partial(interface):
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698