diff options
author | Nico Weber <thakis@chromium.org> | 2015-08-08 15:44:18 -0700 |
---|---|---|
committer | Nico Weber <thakis@chromium.org> | 2015-08-08 22:45:56 +0000 |
commit | 291c000dd06d1fb1291adec1756ce01c8f5ac020 (patch) | |
tree | 0e49de5f1124e969ac8859d429bec5c2115ad768 /content/browser/browser_main_runner.cc | |
parent | 60fc2cd20f1fc6371d04dcfc16d838508896c4a1 (diff) | |
download | chromium_src-291c000dd06d1fb1291adec1756ce01c8f5ac020.zip chromium_src-291c000dd06d1fb1291adec1756ce01c8f5ac020.tar.gz chromium_src-291c000dd06d1fb1291adec1756ce01c8f5ac020.tar.bz2 |
clang/win: Try to fix 64-bit build more after https://codereview.chromium.org/1261953003.
BUG=505316
TBR=jochen@chromium.org
Review URL: https://codereview.chromium.org/1273963003.
Cr-Commit-Position: refs/heads/master@{#342542}
Diffstat (limited to 'content/browser/browser_main_runner.cc')
-rw-r--r-- | content/browser/browser_main_runner.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/content/browser/browser_main_runner.cc b/content/browser/browser_main_runner.cc index c061658..6f35894 100644 --- a/content/browser/browser_main_runner.cc +++ b/content/browser/browser_main_runner.cc @@ -38,6 +38,7 @@ namespace content { #if defined(OS_WIN) namespace { +#if !defined(_WIN64) // Pointer to the original CryptVerifyCertificateSignatureEx function. net::sha256_interception::CryptVerifyCertificateSignatureExFunc g_real_crypt_verify_signature_stub = NULL; @@ -58,6 +59,7 @@ BOOL WINAPI CryptVerifyCertificateSignatureExStub( g_real_crypt_verify_signature_stub, provider, encoding_type, subject_type, subject_data, issuer_type, issuer_data, flags, extra); } +#endif // !defined(_WIN64) // If necessary, install an interception void InstallSha256LegacyHooks() { |