dom/plugins/test/testplugin/secondplugin/nptest.rc

Sat, 03 Jan 2015 20:18:00 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Sat, 03 Jan 2015 20:18:00 +0100
branch
TOR_BUG_3246
changeset 7
129ffea94266
permissions
-rw-r--r--

Conditionally enable double key logic according to:
private browsing mode or privacy.thirdparty.isolate preference and
implement in GetCookieStringCommon and FindCookie where it counts...
With some reservations of how to convince FindCookie users to test
condition and pass a nullptr when disabling double key logic.

michael@0 1 #include<winver.h>
michael@0 2
michael@0 3
michael@0 4 /////////////////////////////////////////////////////////////////////////////
michael@0 5 //
michael@0 6 // Version
michael@0 7 //
michael@0 8
michael@0 9 VS_VERSION_INFO VERSIONINFO
michael@0 10 FILEVERSION 1,0,0,0
michael@0 11 PRODUCTVERSION 1,0,0,0
michael@0 12 FILEFLAGSMASK 0x3fL
michael@0 13 #ifdef _DEBUG
michael@0 14 FILEFLAGS 0x1L
michael@0 15 #else
michael@0 16 FILEFLAGS 0x0L
michael@0 17 #endif
michael@0 18 FILEOS VOS__WINDOWS32
michael@0 19 FILETYPE VFT_DLL
michael@0 20 FILESUBTYPE 0x0L
michael@0 21 BEGIN
michael@0 22 BLOCK "StringFileInfo"
michael@0 23 BEGIN
michael@0 24 BLOCK "040904e4"
michael@0 25 BEGIN
michael@0 26 VALUE "CompanyName", "mozilla.org"
michael@0 27 VALUE "FileDescription", L"Second plug-in for testing purposes."
michael@0 28 VALUE "FileExtents", "ts2"
michael@0 29 VALUE "FileOpenName", "Second test type"
michael@0 30 VALUE "FileVersion", "1.0"
michael@0 31 VALUE "InternalName", "npsecondtest"
michael@0 32 VALUE "MIMEType", "application/x-Second-Test"
michael@0 33 VALUE "OriginalFilename", "npsecondtest.dll"
michael@0 34 VALUE "ProductName", "Second Test Plug-in"
michael@0 35 VALUE "ProductVersion", "1.0"
michael@0 36 END
michael@0 37 END
michael@0 38 BLOCK "VarFileInfo"
michael@0 39 BEGIN
michael@0 40 VALUE "Translation", 0x409, 1252
michael@0 41 END
michael@0 42 END

mercurial