summaryrefslogtreecommitdiffstats
path: root/base
diff options
context:
space:
mode:
authordbeam@chromium.org <dbeam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-03-23 19:10:54 +0000
committerdbeam@chromium.org <dbeam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-03-23 19:10:54 +0000
commit3166220ef3fe1fc31dabed475264e8fc70bf8c75 (patch)
tree6cad1617793a36d9d26b2c912ebc884b1c98474d /base
parent398efe6b509747d3a56dbfb41c6afbe465c2ef65 (diff)
downloadchromium_src-3166220ef3fe1fc31dabed475264e8fc70bf8c75.zip
chromium_src-3166220ef3fe1fc31dabed475264e8fc70bf8c75.tar.gz
chromium_src-3166220ef3fe1fc31dabed475264e8fc70bf8c75.tar.bz2
ifdef OS_NAME -> if defined(OS_NAME)
ifndef OS_NAME -> if !defined(OS_NAME) BUG=none TEST=no regressions Review URL: https://chromiumcodereview.appspot.com/12545059 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@190069 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base')
-rw-r--r--base/message_loop.cc2
-rw-r--r--base/path_service.cc2
-rw-r--r--base/rand_util.h2
3 files changed, 3 insertions, 3 deletions
diff --git a/base/message_loop.cc b/base/message_loop.cc
index 33f2a5b..f9ecd410e 100644
--- a/base/message_loop.cc
+++ b/base/message_loop.cc
@@ -142,7 +142,7 @@ MessageLoop::MessageLoop(Type type)
exception_restoration_(false),
message_histogram_(NULL),
run_loop_(NULL),
-#ifdef OS_WIN
+#if defined(OS_WIN)
os_modal_loop_(false),
#endif // OS_WIN
next_sequence_num_(0) {
diff --git a/base/path_service.cc b/base/path_service.cc
index 5b362ab..1fd2f6f 100644
--- a/base/path_service.cc
+++ b/base/path_service.cc
@@ -4,7 +4,7 @@
#include "base/path_service.h"
-#ifdef OS_WIN
+#if defined(OS_WIN)
#include <windows.h>
#include <shellapi.h>
#include <shlobj.h>
diff --git a/base/rand_util.h b/base/rand_util.h
index 4f4765b..bae8c31 100644
--- a/base/rand_util.h
+++ b/base/rand_util.h
@@ -49,7 +49,7 @@ BASE_EXPORT void RandBytes(void* output, size_t output_length);
// See crypto/ for cryptographically secure random number generation APIs.
BASE_EXPORT std::string RandBytesAsString(size_t length);
-#ifdef OS_POSIX
+#if defined(OS_POSIX)
BASE_EXPORT int GetUrandomFD();
#endif