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

Side by Side Diff: tools/dom/new_scripts/dart_utilities.py

Issue 2875773003: Roll 50: Updated for push to origin/master. (Closed)
Patch Set: Roll 50: Updated to latest Created 3 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 unified diff | Download patch
OLDNEW
1 # Copyright (C) 2013 Google Inc. All rights reserved. 1 # Copyright (C) 2013 Google Inc. All rights reserved.
2 # 2 #
3 # Redistribution and use in source and binary forms, with or without 3 # Redistribution and use in source and binary forms, with or without
4 # modification, are permitted provided that the following conditions are 4 # modification, are permitted provided that the following conditions are
5 # met: 5 # met:
6 # 6 #
7 # * Redistributions of source code must retain the above copyright 7 # * Redistributions of source code must retain the above copyright
8 # notice, this list of conditions and the following disclaimer. 8 # notice, this list of conditions and the following disclaimer.
9 # * Redistributions in binary form must reproduce the above 9 # * Redistributions in binary form must reproduce the above
10 # copyright notice, this list of conditions and the following disclaimer 10 # copyright notice, this list of conditions and the following disclaimer
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
141 class dart_utilities_monkey(): 141 class dart_utilities_monkey():
142 def __init__(self): 142 def __init__(self):
143 self.base_class_name = 'dart_utilities' 143 self.base_class_name = 'dart_utilities'
144 144
145 DartUtilities = dart_utilities_monkey() 145 DartUtilities = dart_utilities_monkey()
146 146
147 DartUtilities.activity_logging_world_list = _activity_logging_world_list 147 DartUtilities.activity_logging_world_list = _activity_logging_world_list
148 DartUtilities.bool_to_cpp = _bool_to_cpp 148 DartUtilities.bool_to_cpp = _bool_to_cpp
149 DartUtilities.call_with_arguments = _call_with_arguments 149 DartUtilities.call_with_arguments = _call_with_arguments
150 DartUtilities.capitalize = v8_utilities.capitalize 150 DartUtilities.capitalize = v8_utilities.capitalize
151 DartUtilities.conditional_string = v8_utilities.conditional_string
152 DartUtilities.cpp_name = v8_utilities.cpp_name 151 DartUtilities.cpp_name = v8_utilities.cpp_name
153 DartUtilities.deprecate_as = _deprecate_as 152 DartUtilities.deprecate_as = _deprecate_as
154 DartUtilities.extended_attribute_value_contains = v8_utilities.extended_attribut e_value_contains 153 DartUtilities.extended_attribute_value_contains = v8_utilities.extended_attribut e_value_contains
155 DartUtilities.gc_type = v8_utilities.gc_type 154 DartUtilities.gc_type = v8_utilities.gc_type
156 DartUtilities.has_extended_attribute = v8_utilities.has_extended_attribute 155 DartUtilities.has_extended_attribute = v8_utilities.has_extended_attribute
157 DartUtilities.has_extended_attribute_value = v8_utilities.has_extended_attribute _value 156 DartUtilities.has_extended_attribute_value = v8_utilities.has_extended_attribute _value
158 DartUtilities.measure_as = _measure_as 157 DartUtilities.measure_as = _measure_as
159 DartUtilities.runtime_enabled_function_name = v8_utilities.runtime_enabled_funct ion_name 158 DartUtilities.runtime_enabled_function_name = v8_utilities.runtime_enabled_funct ion_name
160 DartUtilities.scoped_name = _scoped_name 159 DartUtilities.scoped_name = _scoped_name
161 DartUtilities.strip_suffix = v8_utilities.strip_suffix 160 DartUtilities.strip_suffix = v8_utilities.strip_suffix
162 DartUtilities.uncapitalize = v8_utilities.uncapitalize 161 DartUtilities.uncapitalize = v8_utilities.uncapitalize
163 DartUtilities.v8_class_name = v8_utilities.v8_class_name 162 DartUtilities.v8_class_name = v8_utilities.v8_class_name
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698