From d98f6e000a871942dbb143dafe7a0d165eb24e21 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Bostr=C3=B6m?= Date: Tue, 17 May 2016 12:36:11 +0200 Subject: [PATCH] Fixed typo. KT_DEFAULT different based on WEBRTC_CHROMIUM_BUILD instead of WEBRTC_BUILD_CHROMIUM. BUG=chromium:611698, webrtc:5795 R=perkj@webrtc.org Review URL: https://codereview.webrtc.org/1986053005 . Cr-Commit-Position: refs/heads/master@{#12771} --- webrtc/base/sslidentity.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webrtc/base/sslidentity.h b/webrtc/base/sslidentity.h index e22bfd6e52..8e7e786130 100644 --- a/webrtc/base/sslidentity.h +++ b/webrtc/base/sslidentity.h @@ -119,7 +119,7 @@ class SSLCertChain { // KT_DEFAULT is used as the default KeyType for KeyParams. enum KeyType { KT_RSA, KT_ECDSA, KT_LAST, -#if defined(WEBRTC_BUILD_CHROMIUM) +#if defined(WEBRTC_CHROMIUM_BUILD) // TODO(hbos): Because of an experiment running in Chromium which relies on // RSA being the default (for performance reasons) we have this #if. ECDSA // launches in Chromium by flipping a flag which overrides the default. As