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

Unified Diff: courgette/courgette.h

Issue 8417045: Last small bit of refactoring. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Created 9 years, 2 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 | courgette/courgette.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: courgette/courgette.h
diff --git a/courgette/courgette.h b/courgette/courgette.h
index 2970a3f803f8b70fcfc1f560b749de2dc68343ec..20a25ea81a609cb7eba4e6beb5c71471f81833f4 100644
--- a/courgette/courgette.h
+++ b/courgette/courgette.h
@@ -51,10 +51,10 @@ enum Status {
};
// What type of executable is something
-// Generally corresponds to CourgettePatchFile::TransformationMethodId
+// This is part of the patch format. Never reuse an id number.
enum ExecutableType {
- UNKNOWN,
- WIN32_X86
+ EXE_UNKNOWN = 0,
+ EXE_WIN_32_X86 = 1,
};
class SinkStream;
« no previous file with comments | « no previous file | courgette/courgette.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698