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

Side by Side Diff: client/dom/scripts/systeminterface.py

Issue 9623017: Refactor the event-generation code to locate it in systemhtml.py. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Code review changes Created 8 years, 9 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 | « client/dom/scripts/systemhtml.py ('k') | client/dom/scripts/systemwrapping.py » ('j') | 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 providesfunctionality for systems to generate 6 """This module providesfunctionality for systems to generate
7 Dart interfaces from the IDL database.""" 7 Dart interfaces from the IDL database."""
8 8
9 import os 9 import os
10 import systembase 10 import systembase
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after
206 TYPE=info.type_name, 206 TYPE=info.type_name,
207 NAME=info.name, 207 NAME=info.name,
208 PARAMS=info.ParametersInterfaceDeclaration()) 208 PARAMS=info.ParametersInterfaceDeclaration())
209 209
210 # Interfaces get secondary members directly via the superinterfaces. 210 # Interfaces get secondary members directly via the superinterfaces.
211 def AddSecondaryAttribute(self, interface, getter, setter): 211 def AddSecondaryAttribute(self, interface, getter, setter):
212 pass 212 pass
213 213
214 def AddSecondaryOperation(self, interface, attr): 214 def AddSecondaryOperation(self, interface, attr):
215 pass 215 pass
216
217 def AddEventAttributes(self, event_attrs):
218 pass
OLDNEW
« no previous file with comments | « client/dom/scripts/systemhtml.py ('k') | client/dom/scripts/systemwrapping.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698