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

Side by Side Diff: ppapi/generators/idl_gen_wrapper.py

Issue 10162022: Set svn:executable bit on scripts that are executable. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 8 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 | « ppapi/generators/idl_gen_pnacl.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 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 #
3 # Copyright (c) 2011 The Chromium Authors. All rights reserved.
4 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
5 # found in the LICENSE file. 3 # found in the LICENSE file.
6 4
7 """Base class for generating wrapper functions for PPAPI methods. 5 """Base class for generating wrapper functions for PPAPI methods.
8 """ 6 """
9 7
10 from datetime import datetime 8 from datetime import datetime
11 import os 9 import os
12 import sys 10 import sys
13 11
(...skipping 432 matching lines...) Expand 10 before | Expand all | Expand 10 after
446 # Collect all the wrapper functions into interface structs. 444 # Collect all the wrapper functions into interface structs.
447 self.GenerateWrapperInterfaces(iface_releases, out) 445 self.GenerateWrapperInterfaces(iface_releases, out)
448 446
449 # Generate a table of the wrapped interface structs that can be looked up. 447 # Generate a table of the wrapped interface structs that can be looked up.
450 self.GenerateWrapperInfoAndCollection(iface_releases, out) 448 self.GenerateWrapperInfoAndCollection(iface_releases, out)
451 449
452 # Write out the IDL-invariant functions. 450 # Write out the IDL-invariant functions.
453 self.GenerateFixedFunctions(out) 451 self.GenerateFixedFunctions(out)
454 out.Close() 452 out.Close()
455 return 0 453 return 0
OLDNEW
« no previous file with comments | « ppapi/generators/idl_gen_pnacl.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698