summaryrefslogtreecommitdiffstats
path: root/courgette/patcher_x86_32.h
diff options
context:
space:
mode:
authorwfh@chromium.org <wfh@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-09-23 21:05:22 +0000
committerwfh@chromium.org <wfh@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-09-23 21:05:22 +0000
commit6bf1a00d77b886f11b8e5d96a64c3a22f544afad (patch)
tree2f97a7ebb508ebf3482ba8ec855ee3554f5ca92f /courgette/patcher_x86_32.h
parent4b5dc66011b4499c09da44eb69d7e8f5836a9f50 (diff)
downloadchromium_src-6bf1a00d77b886f11b8e5d96a64c3a22f544afad.zip
chromium_src-6bf1a00d77b886f11b8e5d96a64c3a22f544afad.tar.gz
chromium_src-6bf1a00d77b886f11b8e5d96a64c3a22f544afad.tar.bz2
Add PE64 support to courgette
Add tests for PE64 BUG=38784 Review URL: https://chromiumcodereview.appspot.com/23600063 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@224789 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'courgette/patcher_x86_32.h')
-rw-r--r--courgette/patcher_x86_32.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/courgette/patcher_x86_32.h b/courgette/patcher_x86_32.h
index 9488270..5625395 100644
--- a/courgette/patcher_x86_32.h
+++ b/courgette/patcher_x86_32.h
@@ -3,6 +3,7 @@
// found in the LICENSE file.
// This is the transformation for Windows X86 executables.
+// The same patcher can be used for Windows X64 executables.
#ifndef COURGETTE_WIN32_X86_PATCHER_H_
#define COURGETTE_WIN32_X86_PATCHER_H_
@@ -12,7 +13,7 @@
namespace courgette {
// Courgette32X86Patcher is a TransformationPatcher for Windows 32-bit
-// executables.
+// and 64-bit executables. We can use the same patcher for both.
//
class PatcherX86_32 : public TransformationPatcher {
public: