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

Unified Diff: ui/gl/generate_bindings.py

Issue 11275120: Virtual GL (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 1 month 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « gpu/gpu.gyp ('k') | ui/gl/gl.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/gl/generate_bindings.py
diff --git a/ui/gl/generate_bindings.py b/ui/gl/generate_bindings.py
index 3bf7b37a6a1f7a6ff24e9badc5f23f8315d055f3..45041d88abf8b04f77c16a582fbfed8d3504228f 100755
--- a/ui/gl/generate_bindings.py
+++ b/ui/gl/generate_bindings.py
@@ -1234,9 +1234,6 @@ def GenerateAPIHeader(file, functions, set_name, used_extension_functions):
// This file is automatically generated.
-#ifndef UI_GFX_GL_GL_BINDINGS_API_AUTOGEN_%(name)s_H_
-#define UI_GFX_GL_GL_BINDINGS_API_AUTOGEN_%(name)s_H_
-
""" % {'name': set_name.upper()})
# Write API declaration.
@@ -1245,8 +1242,6 @@ def GenerateAPIHeader(file, functions, set_name, used_extension_functions):
(func['return_type'], func['names'][0], func['arguments']))
file.write('\n')
- file.write('#endif // UI_GFX_GL_GL_BINDINGS_API_AUTOGEN_%s_H_\n' %
- set_name.upper())
def GenerateSource(file, functions, set_name, used_extension_functions):
« no previous file with comments | « gpu/gpu.gyp ('k') | ui/gl/gl.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698