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

Side by Side Diff: chrome_frame/chrome_tab_version.rc

Issue 2020003: Committing for jeffbailey.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 7 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 | « chrome_frame/chrome_frame.gyp ('k') | chrome_frame/chrome_tab_version.rc.version » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #include "version.h"
2
3 #ifdef APSTUDIO_INVOKED
4 # error Don't open this in the GUI, it'll be massacred on save.
5 #endif // APSTUDIO_INVOKED
6
1 ///////////////////////////////////////////////////////////////////////////// 7 /////////////////////////////////////////////////////////////////////////////
2 // 8 //
3 // Version 9 // Version
4 // 10 //
5 11
6 VS_VERSION_INFO VERSIONINFO 12 VS_VERSION_INFO VERSIONINFO
7 FILEVERSION @MAJOR@,@MINOR@,@BUILD@,@PATCH@ 13 FILEVERSION CHROME_VERSION
8 PRODUCTVERSION @MAJOR@,@MINOR@,@BUILD@,@PATCH@ 14 PRODUCTVERSION CHROME_VERSION
9 FILEFLAGSMASK 0x17L 15 FILEFLAGSMASK 0x17L
10 #ifdef _DEBUG 16 #ifdef _DEBUG
11 FILEFLAGS 0x1L 17 FILEFLAGS 0x1L
12 #else 18 #else
13 FILEFLAGS 0x0L 19 FILEFLAGS 0x0L
14 #endif 20 #endif
15 FILEOS 0x4L 21 FILEOS 0x4L
16 FILETYPE 0x2L 22 FILETYPE 0x2L
17 FILESUBTYPE 0x0L 23 FILESUBTYPE 0x0L
18 BEGIN 24 BEGIN
19 BLOCK "StringFileInfo" 25 BLOCK "StringFileInfo"
20 BEGIN 26 BEGIN
21 // Note that Firefox 3.0 requires the charset to be 04e4 (multi-lingual) . 27 // Note that Firefox 3.0 requires the charset to be 04e4 (multi-lingual) .
22 BLOCK "040904e4" 28 BLOCK "040904e4"
23 BEGIN 29 BEGIN
24 VALUE "CompanyName", "@COMPANY_FULLNAME@" 30 VALUE "CompanyName", COMPANY_FULLNAME_STRING
25 VALUE "CompanyShortName", "@COMPANY_SHORTNAME@" 31 VALUE "CompanyShortName", COMPANY_SHORTNAME_STRING
26 VALUE "ProductName", "Google Chrome Frame" 32 VALUE "ProductName", "Google Chrome Frame"
27 VALUE "ProductShortName", "ChromeFrame" 33 VALUE "ProductShortName", "ChromeFrame"
28 VALUE "ProductVersion", "@MAJOR@.@MINOR@.@BUILD@.@PATCH@" 34 VALUE "ProductVersion", CHROME_VERSION_STRING
29 VALUE "FileDescription", "Chrome Frame renders the Web of the future in the browsers of the past. It's like strapping a rocket engine to a minivan." 35 VALUE "FileDescription", "Chrome Frame renders the Web of the future in the browsers of the past. It's like strapping a rocket engine to a minivan."
30 VALUE "FileVersion", "@MAJOR@.@MINOR@.@BUILD@.@PATCH@" 36 VALUE "FileVersion", CHROME_VERSION_STRING
31 VALUE "InternalName", "Google Chrome Frame" 37 VALUE "InternalName", "Google Chrome Frame"
32 VALUE "LegalCopyright", "@COPYRIGHT@" 38 VALUE "LegalCopyright", COPYRIGHT_STRING
33 VALUE "MIMEType", "application/chromeframe" 39 VALUE "MIMEType", "application/chromeframe"
34 VALUE "FileExtents", "chromeframe" 40 VALUE "FileExtents", "chromeframe"
35 VALUE "FileOpenName", "chromeframe" 41 VALUE "FileOpenName", "chromeframe"
36 VALUE "OriginalFilename", "npchrome_frame.dll" 42 VALUE "OriginalFilename", "npchrome_frame.dll"
37 VALUE "LastChange", "@LASTCHANGE@" 43 VALUE "LastChange", LASTCHANGE_STRING
38 VALUE "Official Build", "@OFFICIAL_BUILD@" 44 VALUE "Official Build", OFFICIAL_BUILD_STRING
39 END 45 END
40 END 46 END
41 BLOCK "VarFileInfo" 47 BLOCK "VarFileInfo"
42 BEGIN 48 BEGIN
43 // Note that Firefox 3.0 requires the charset to be 1252 (multi-lingual) . 49 // Note that Firefox 3.0 requires the charset to be 1252 (multi-lingual) .
44 VALUE "Translation", 0x409, 1252 50 VALUE "Translation", 0x409, 1252
45 END 51 END
46 END 52 END
OLDNEW
« no previous file with comments | « chrome_frame/chrome_frame.gyp ('k') | chrome_frame/chrome_tab_version.rc.version » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698