summaryrefslogtreecommitdiffstats
path: root/chrome/browser/nacl_host
diff options
context:
space:
mode:
authorncbray@google.com <ncbray@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2012-06-12 01:57:04 +0000
committerncbray@google.com <ncbray@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2012-06-12 01:57:04 +0000
commit4164393f1a83b20746dbe4ef49589d5e101c872f (patch)
tree3a18850986947907e120298ec449ae78f75b280e /chrome/browser/nacl_host
parent97a3b6e937a9795cbb8767b7ac9e31bf77749ee3 (diff)
downloadchromium_src-4164393f1a83b20746dbe4ef49589d5e101c872f.zip
chromium_src-4164393f1a83b20746dbe4ef49589d5e101c872f.tar.gz
chromium_src-4164393f1a83b20746dbe4ef49589d5e101c872f.tar.bz2
Fix an incorrect reference to a pre-processor define.
The typo originated from: https://chromiumcodereview.appspot.com/10532018 and caused the CL to not function as intended. BUG= http://code.google.com/p/chromium/issues/detail?id=131218 TEST= none Review URL: https://chromiumcodereview.appspot.com/10536107 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@141592 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/nacl_host')
-rw-r--r--chrome/browser/nacl_host/nacl_browser.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome/browser/nacl_host/nacl_browser.cc b/chrome/browser/nacl_host/nacl_browser.cc
index 0e36913..637c83c 100644
--- a/chrome/browser/nacl_host/nacl_browser.cc
+++ b/chrome/browser/nacl_host/nacl_browser.cc
@@ -9,6 +9,7 @@
#include "base/path_service.h"
#include "base/pickle.h"
#include "base/win/windows_version.h"
+#include "build/build_config.h"
#include "chrome/common/chrome_paths.h"
#include "chrome/common/chrome_paths_internal.h"
#include "content/public/browser/browser_thread.h"
@@ -21,7 +22,7 @@ const char kValidationCacheSequenceName[] = "NaClValidationCache";
const FilePath::CharType kValidationCacheFileName[] =
FILE_PATH_LITERAL("nacl_validation_cache.bin");
-#if defined(CHROMEOS)
+#if defined(OS_CHROMEOS)
// TODO(ncbray) enable on ChromeOS.
// http://code.google.com/p/chromium/issues/detail?id=131218
const bool kValidationCacheEnabledByDefault = false;