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

Unified Diff: chrome/tools/extensions/chromium_extension.py

Issue 119283: Always output 32bit integer values in header of CRX file.... (Closed) Base URL: svn://chrome-svn.corp.google.com/chrome/trunk/src/
Patch Set: Created 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/tools/extensions/chromium_extension.py
===================================================================
--- chrome/tools/extensions/chromium_extension.py (revision 17834)
+++ chrome/tools/extensions/chromium_extension.py (working copy)
@@ -104,7 +104,7 @@
out.write("Cr24") # Extension file magic number
# The rest of the header is currently made up of three ints:
# version, header size, manifest size
- header = array.array("l")
+ header = array.array("i")
header.append(1) # version
header.append(16) # header size
manifest_json = json.dumps(manifest);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698