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

Side by Side Diff: Source/WebCore/inspector/CodeGeneratorInspector.py

Issue 13497009: Remove ENABLE(FILE_SYSTEM) compile-time flag. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: added CodeGeneratorInspector.py change Created 7 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 | « Source/WebCore/html/InputType.cpp ('k') | Source/WebCore/inspector/InspectorController.cpp » ('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/env python 1 #!/usr/bin/env python
2 # Copyright (c) 2011 Google Inc. All rights reserved. 2 # Copyright (c) 2011 Google Inc. All rights reserved.
3 # Copyright (c) 2012 Intel Corporation. All rights reserved. 3 # Copyright (c) 2012 Intel Corporation. All rights reserved.
4 # 4 #
5 # Redistribution and use in source and binary forms, with or without 5 # Redistribution and use in source and binary forms, with or without
6 # modification, are permitted provided that the following conditions are 6 # modification, are permitted provided that the following conditions are
7 # met: 7 # met:
8 # 8 #
9 # * Redistributions of source code must retain the above copyright 9 # * Redistributions of source code must retain the above copyright
10 # notice, this list of conditions and the following disclaimer. 10 # notice, this list of conditions and the following disclaimer.
(...skipping 25 matching lines...) Expand all
36 try: 36 try:
37 import json 37 import json
38 except ImportError: 38 except ImportError:
39 import simplejson as json 39 import simplejson as json
40 40
41 import CodeGeneratorInspectorStrings 41 import CodeGeneratorInspectorStrings
42 42
43 43
44 DOMAIN_DEFINE_NAME_MAP = { 44 DOMAIN_DEFINE_NAME_MAP = {
45 "Database": "SQL_DATABASE", 45 "Database": "SQL_DATABASE",
46 "FileSystem": "FILE_SYSTEM",
47 "Worker": "WORKERS", 46 "Worker": "WORKERS",
48 } 47 }
49 48
50 49
51 # Manually-filled map of type name replacements. 50 # Manually-filled map of type name replacements.
52 TYPE_NAME_FIX_MAP = { 51 TYPE_NAME_FIX_MAP = {
53 "RGBA": "Rgba", # RGBA is reported to be conflicting with a define name in Windows CE. 52 "RGBA": "Rgba", # RGBA is reported to be conflicting with a define name in Windows CE.
54 "": "Empty", 53 "": "Empty",
55 } 54 }
56 55
(...skipping 2341 matching lines...) Expand 10 before | Expand all | Expand 10 after
2398 backend_h_file.close() 2397 backend_h_file.close()
2399 backend_cpp_file.close() 2398 backend_cpp_file.close()
2400 2399
2401 frontend_h_file.close() 2400 frontend_h_file.close()
2402 frontend_cpp_file.close() 2401 frontend_cpp_file.close()
2403 2402
2404 typebuilder_h_file.close() 2403 typebuilder_h_file.close()
2405 typebuilder_cpp_file.close() 2404 typebuilder_cpp_file.close()
2406 2405
2407 backend_js_file.close() 2406 backend_js_file.close()
OLDNEW
« no previous file with comments | « Source/WebCore/html/InputType.cpp ('k') | Source/WebCore/inspector/InspectorController.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698