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

Side by Side Diff: tools/dom/scripts/systemhtml.py

Issue 16055011: Remove now absent interfaces/methods. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « tools/dom/scripts/htmlrenamer.py ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/usr/bin/python 1 #!/usr/bin/python
2 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3 # for details. All rights reserved. Use of this source code is governed by a 3 # for details. All rights reserved. Use of this source code is governed by a
4 # BSD-style license that can be found in the LICENSE file. 4 # BSD-style license that can be found in the LICENSE file.
5 5
6 """This module provides shared functionality for the system to generate 6 """This module provides shared functionality for the system to generate
7 Dart:html APIs from the IDL database.""" 7 Dart:html APIs from the IDL database."""
8 8
9 import emitter 9 import emitter
10 import monitored 10 import monitored
11 import os 11 import os
12 from generator import * 12 from generator import *
13 from htmldartgenerator import * 13 from htmldartgenerator import *
14 14
15 HTML_LIBRARY_NAMES = ['chrome', 'html', 'indexed_db', 'svg', 15 HTML_LIBRARY_NAMES = ['chrome', 'html', 'indexed_db', 'svg',
16 'web_audio', 'web_gl', 'web_sql'] 16 'web_audio', 'web_gl', 'web_sql']
17 17
18 _js_custom_members = monitored.Set('systemhtml._js_custom_members', [ 18 _js_custom_members = monitored.Set('systemhtml._js_custom_members', [
19 'AudioBufferSourceNode.start', 19 'AudioBufferSourceNode.start',
20 'AudioBufferSourceNode.stop', 20 'AudioBufferSourceNode.stop',
21 'AudioContext.createGain', 21 'AudioContext.createGain',
22 'AudioContext.createScriptProcessor', 22 'AudioContext.createScriptProcessor',
23 'CanvasRenderingContext2D.drawImage', 23 'CanvasRenderingContext2D.drawImage',
24 'CanvasRenderingContext2D.lineDashOffset', 24 'CanvasRenderingContext2D.lineDashOffset',
25 'Console.memory', 25 'Console.memory',
26 'Console.profiles',
27 'Console.assertCondition', 26 'Console.assertCondition',
28 'Console.count', 27 'Console.count',
29 'Console.debug', 28 'Console.debug',
30 'Console.dir', 29 'Console.dir',
31 'Console.dirxml', 30 'Console.dirxml',
32 'Console.error', 31 'Console.error',
33 'Console.group', 32 'Console.group',
34 'Console.groupCollapsed', 33 'Console.groupCollapsed',
35 'Console.groupEnd', 34 'Console.groupEnd',
36 'Console.info', 35 'Console.info',
(...skipping 1140 matching lines...) Expand 10 before | Expand all | Expand 10 after
1177 for library_name in libraries: 1176 for library_name in libraries:
1178 self._libraries[library_name] = DartLibrary( 1177 self._libraries[library_name] = DartLibrary(
1179 library_name, template_loader, library_type, output_dir) 1178 library_name, template_loader, library_type, output_dir)
1180 1179
1181 def AddFile(self, basename, library_name, path): 1180 def AddFile(self, basename, library_name, path):
1182 self._libraries[library_name].AddFile(path) 1181 self._libraries[library_name].AddFile(path)
1183 1182
1184 def Emit(self, emitter, auxiliary_dir): 1183 def Emit(self, emitter, auxiliary_dir):
1185 for lib in self._libraries.values(): 1184 for lib in self._libraries.values():
1186 lib.Emit(emitter, auxiliary_dir) 1185 lib.Emit(emitter, auxiliary_dir)
OLDNEW
« no previous file with comments | « tools/dom/scripts/htmlrenamer.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698