summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--base/message_loop.cc2
-rw-r--r--base/path_service.cc2
-rw-r--r--base/rand_util.h2
-rw-r--r--cc/output/software_renderer_unittest.cc2
-rw-r--r--chrome/browser/extensions/api/messaging/native_messaging_test_util.cc2
-rw-r--r--chrome/browser/importer/firefox_importer_unittest.cc4
-rw-r--r--chrome/browser/managed_mode/managed_user_service.cc2
-rw-r--r--chrome/browser/printing/print_dialog_cloud.cc2
-rw-r--r--chrome/browser/renderer_host/pepper/pepper_flash_browser_host.cc2
-rw-r--r--chrome/browser/ui/ash/screenshot_taker.cc2
-rw-r--r--chrome/browser/ui/webui/flags_ui.cc4
-rw-r--r--chrome/browser/ui/webui/flags_ui.h6
-rw-r--r--chrome/browser/ui/webui/print_preview/print_preview_handler.cc4
-rw-r--r--chrome/browser/ui/webui/signin/profile_signin_confirmation_dialog.cc2
-rw-r--r--content/browser/download/download_item_impl.cc2
-rw-r--r--content/browser/plugin_data_remover_impl_browsertest.cc2
-rw-r--r--content/browser/plugin_service_impl_browsertest.cc2
-rw-r--r--content/test/webrtc_audio_device_test.cc2
-rw-r--r--courgette/memory_allocator.cc2
-rw-r--r--courgette/memory_allocator.h2
-rw-r--r--gpu/command_buffer/tests/occlusion_query_unittests.cc2
-rw-r--r--tools/metrics/testdata/foo.cc2
-rw-r--r--tools/metrics/testdata/foo_ignored.txt2
-rw-r--r--tools/metrics/testdata/subdir/foo_test.mm2
-rw-r--r--webkit/plugins/npapi/test/plugin_get_javascript_url_test.cc8
-rw-r--r--webkit/plugins/npapi/webplugin_delegate_impl.cc4
26 files changed, 35 insertions, 35 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
diff --git a/cc/output/software_renderer_unittest.cc b/cc/output/software_renderer_unittest.cc
index 744ef08..90cbefb 100644
--- a/cc/output/software_renderer_unittest.cc
+++ b/cc/output/software_renderer_unittest.cc
@@ -98,7 +98,7 @@ TEST_F(SoftwareRendererTest, solidColorQuad)
// Yellow: expects 0xFFFFFF00, was 0xFF00FFFF on android.
// Cyan: expects 0xFF00FFFF, was 0xFFFFFF00 on android.
// http://crbug.com/154528
-#ifndef OS_ANDROID
+#if !defined(OS_ANDROID)
EXPECT_EQ(SK_ColorYELLOW, pixels[0]);
EXPECT_EQ(SK_ColorYELLOW, pixels[outerPixels - 1]);
EXPECT_EQ(SK_ColorCYAN, pixels[outerSize.width() + 1]);
diff --git a/chrome/browser/extensions/api/messaging/native_messaging_test_util.cc b/chrome/browser/extensions/api/messaging/native_messaging_test_util.cc
index d7ba0f2..1b71cd9 100644
--- a/chrome/browser/extensions/api/messaging/native_messaging_test_util.cc
+++ b/chrome/browser/extensions/api/messaging/native_messaging_test_util.cc
@@ -29,7 +29,7 @@ void CreateTestNativeHostManifest(base::FilePath manifest_path) {
ASSERT_TRUE(PathService::Get(chrome::DIR_TEST_DATA, &test_user_data_dir));
test_user_data_dir = test_user_data_dir.AppendASCII("native_messaging");
test_user_data_dir = test_user_data_dir.AppendASCII("native_hosts");
-#ifdef OS_POSIX
+#if defined(OS_POSIX)
base::FilePath host_path = test_user_data_dir.AppendASCII("echo.py");
#else
base::FilePath host_path = test_user_data_dir.AppendASCII("echo.bat");
diff --git a/chrome/browser/importer/firefox_importer_unittest.cc b/chrome/browser/importer/firefox_importer_unittest.cc
index 151c934..8c8b9fa 100644
--- a/chrome/browser/importer/firefox_importer_unittest.cc
+++ b/chrome/browser/importer/firefox_importer_unittest.cc
@@ -498,7 +498,7 @@ TEST_F(FirefoxProfileImporterTest, MAYBE_IMPORTER(Firefox35Importer)) {
TEST(FirefoxImporterTest, MAYBE_NSS(Firefox2NSS3Decryptor)) {
base::FilePath nss_path;
ASSERT_TRUE(PathService::Get(chrome::DIR_TEST_DATA, &nss_path));
-#ifdef OS_MACOSX
+#if defined(OS_MACOSX)
nss_path = nss_path.AppendASCII("firefox2_nss_mac");
#else
nss_path = nss_path.AppendASCII("firefox2_nss");
@@ -523,7 +523,7 @@ TEST(FirefoxImporterTest, MAYBE_NSS(Firefox2NSS3Decryptor)) {
TEST(FirefoxImporterTest, MAYBE_NSS(Firefox3NSS3Decryptor)) {
base::FilePath nss_path;
ASSERT_TRUE(PathService::Get(chrome::DIR_TEST_DATA, &nss_path));
-#ifdef OS_MACOSX
+#if defined(OS_MACOSX)
nss_path = nss_path.AppendASCII("firefox3_nss_mac");
#else
nss_path = nss_path.AppendASCII("firefox3_nss");
diff --git a/chrome/browser/managed_mode/managed_user_service.cc b/chrome/browser/managed_mode/managed_user_service.cc
index c27fdc7..ac5edea 100644
--- a/chrome/browser/managed_mode/managed_user_service.cc
+++ b/chrome/browser/managed_mode/managed_user_service.cc
@@ -206,7 +206,7 @@ bool ManagedUserService::UserMayLoad(const extensions::Extension* extension,
if (extension) {
bool was_installed_by_default = extension->was_installed_by_default();
-#ifdef OS_CHROMEOS
+#if defined(OS_CHROMEOS)
// On Chrome OS all external sources are controlled by us so it means that
// they are "default". Method was_installed_by_default returns false because
// extensions creation flags are ignored in case of default extensions with
diff --git a/chrome/browser/printing/print_dialog_cloud.cc b/chrome/browser/printing/print_dialog_cloud.cc
index c97d314..7b7b7a8 100644
--- a/chrome/browser/printing/print_dialog_cloud.cc
+++ b/chrome/browser/printing/print_dialog_cloud.cc
@@ -141,7 +141,7 @@ bool GetPageSetupParameters(const std::string& json,
string16 GetSwitchValueString16(const CommandLine& command_line,
const char* switchName) {
-#ifdef OS_WIN
+#if defined(OS_WIN)
CommandLine::StringType native_switch_val;
native_switch_val = command_line.GetSwitchValueNative(switchName);
return string16(native_switch_val);
diff --git a/chrome/browser/renderer_host/pepper/pepper_flash_browser_host.cc b/chrome/browser/renderer_host/pepper/pepper_flash_browser_host.cc
index 9edfa11..039acd9 100644
--- a/chrome/browser/renderer_host/pepper/pepper_flash_browser_host.cc
+++ b/chrome/browser/renderer_host/pepper/pepper_flash_browser_host.cc
@@ -20,7 +20,7 @@
#include "ppapi/proxy/resource_message_params.h"
#include "ppapi/shared_impl/time_conversion.h"
-#ifdef OS_WIN
+#if defined(OS_WIN)
#include <windows.h>
#elif defined(OS_MACOSX)
#include <CoreServices/CoreServices.h>
diff --git a/chrome/browser/ui/ash/screenshot_taker.cc b/chrome/browser/ui/ash/screenshot_taker.cc
index 52182d6..e5742f9d 100644
--- a/chrome/browser/ui/ash/screenshot_taker.cc
+++ b/chrome/browser/ui/ash/screenshot_taker.cc
@@ -71,7 +71,7 @@ void SaveScreenshot(const base::FilePath& screenshot_path,
}
// TODO(kinaba): crbug.com/140425, remove this ungly #ifdef dispatch.
-#ifdef OS_CHROMEOS
+#if defined(OS_CHROMEOS)
void SaveScreenshotToDrive(scoped_refptr<base::RefCountedBytes> png_data,
drive::DriveFileError error,
const base::FilePath& local_path) {
diff --git a/chrome/browser/ui/webui/flags_ui.cc b/chrome/browser/ui/webui/flags_ui.cc
index 9b639c7..e8d53e1 100644
--- a/chrome/browser/ui/webui/flags_ui.cc
+++ b/chrome/browser/ui/webui/flags_ui.cc
@@ -175,7 +175,7 @@ FlagsUI::FlagsUI(content::WebUI* web_ui)
ALLOW_THIS_IN_INITIALIZER_LIST(weak_factory_(this)) {
Profile* profile = Profile::FromWebUI(web_ui);
-#ifdef OS_CHROMEOS
+#if defined(OS_CHROMEOS)
chromeos::DeviceSettingsService::Get()->GetOwnershipStatusAsync(
base::Bind(&FlagsUI::FinishInitialization,
weak_factory_.GetWeakPtr(), profile));
@@ -203,7 +203,7 @@ void FlagsUI::RegisterPrefs(PrefRegistrySimple* registry) {
registry->RegisterListPref(prefs::kEnabledLabsExperiments);
}
-#ifdef OS_CHROMEOS
+#if defined(OS_CHROMEOS)
// static
void FlagsUI::RegisterUserPrefs(PrefRegistrySyncable* registry) {
registry->RegisterListPref(prefs::kEnabledLabsExperiments,
diff --git a/chrome/browser/ui/webui/flags_ui.h b/chrome/browser/ui/webui/flags_ui.h
index 301ae86..d0c912f 100644
--- a/chrome/browser/ui/webui/flags_ui.h
+++ b/chrome/browser/ui/webui/flags_ui.h
@@ -9,7 +9,7 @@
#include "content/public/browser/web_ui_controller.h"
#include "ui/base/layout.h"
-#ifdef OS_CHROMEOS
+#if defined(OS_CHROMEOS)
#include "chrome/browser/chromeos/settings/device_settings_service.h"
#endif
@@ -29,12 +29,12 @@ class FlagsUI : public content::WebUIController {
static base::RefCountedMemory* GetFaviconResourceBytes(
ui::ScaleFactor scale_factor);
static void RegisterPrefs(PrefRegistrySimple* registry);
-#ifdef OS_CHROMEOS
+#if defined(OS_CHROMEOS)
static void RegisterUserPrefs(PrefRegistrySyncable* registry);
#endif
private:
-#ifdef OS_CHROMEOS
+#if defined(OS_CHROMEOS)
// On ChromeOS verifying if the owner is signed in is async operation and only
// after finishing it the UI can be properly populated. This function is the
// callback for whether the owner is signed in. It will respectively pick the
diff --git a/chrome/browser/ui/webui/print_preview/print_preview_handler.cc b/chrome/browser/ui/webui/print_preview/print_preview_handler.cc
index c6266b3..0525da3 100644
--- a/chrome/browser/ui/webui/print_preview/print_preview_handler.cc
+++ b/chrome/browser/ui/webui/print_preview/print_preview_handler.cc
@@ -215,7 +215,7 @@ void PrintToPdfCallback(Metafile* metafile, const base::FilePath& path) {
base::Bind(&base::DeletePointer<Metafile>, metafile));
}
-#ifdef OS_CHROMEOS
+#if defined(OS_CHROMEOS)
void PrintToPdfCallbackWithCheck(Metafile* metafile,
drive::DriveFileError error,
const base::FilePath& path) {
@@ -915,7 +915,7 @@ void PrintPreviewHandler::PostPrintToPdfTask() {
printing::PreviewMetafile* metafile = new printing::PreviewMetafile;
metafile->InitFromData(static_cast<const void*>(data->front()), data->size());
// PrintToPdfCallback takes ownership of |metafile|.
-#ifdef OS_CHROMEOS
+#if defined(OS_CHROMEOS)
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
drive::util::PrepareWritableFileAndRun(
Profile::FromBrowserContext(preview_web_contents()->GetBrowserContext()),
diff --git a/chrome/browser/ui/webui/signin/profile_signin_confirmation_dialog.cc b/chrome/browser/ui/webui/signin/profile_signin_confirmation_dialog.cc
index ea232d3..b32174c 100644
--- a/chrome/browser/ui/webui/signin/profile_signin_confirmation_dialog.cc
+++ b/chrome/browser/ui/webui/signin/profile_signin_confirmation_dialog.cc
@@ -269,7 +269,7 @@ std::string ProfileSigninConfirmationDialog::GetDialogArgs() const {
DictionaryValue dict;
dict.SetString("username", username_);
dict.SetBoolean("promptForNewProfile", prompt_for_new_profile_);
-#ifdef OS_WIN
+#if defined(OS_WIN)
dict.SetBoolean("hideTitle", true);
#endif
base::JSONWriter::Write(&dict, &data);
diff --git a/content/browser/download/download_item_impl.cc b/content/browser/download/download_item_impl.cc
index 3e56e27..1b43462 100644
--- a/content/browser/download/download_item_impl.cc
+++ b/content/browser/download/download_item_impl.cc
@@ -585,7 +585,7 @@ bool DownloadItemImpl::GetFileExternallyRemoved() const {
}
bool DownloadItemImpl::IsDangerous() const {
-#ifdef OS_WIN
+#if defined(OS_WIN)
// TODO(noelutz): At this point only the windows views UI supports
// warnings based on dangerous content.
return (danger_type_ == DOWNLOAD_DANGER_TYPE_DANGEROUS_FILE ||
diff --git a/content/browser/plugin_data_remover_impl_browsertest.cc b/content/browser/plugin_data_remover_impl_browsertest.cc
index 494cc70..f0b4ead 100644
--- a/content/browser/plugin_data_remover_impl_browsertest.cc
+++ b/content/browser/plugin_data_remover_impl_browsertest.cc
@@ -29,7 +29,7 @@ class PluginDataRemoverTest : public ContentBrowserTest {
}
virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE {
-#ifdef OS_MACOSX
+#if defined(OS_MACOSX)
base::FilePath browser_directory;
PathService::Get(base::DIR_MODULE, &browser_directory);
command_line->AppendSwitchPath(switches::kExtraPluginDir,
diff --git a/content/browser/plugin_service_impl_browsertest.cc b/content/browser/plugin_service_impl_browsertest.cc
index 8a5e2cc..eaf5b66 100644
--- a/content/browser/plugin_service_impl_browsertest.cc
+++ b/content/browser/plugin_service_impl_browsertest.cc
@@ -143,7 +143,7 @@ class PluginServiceTest : public ContentBrowserTest {
}
virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE {
-#ifdef OS_MACOSX
+#if defined(OS_MACOSX)
base::FilePath browser_directory;
PathService::Get(base::DIR_MODULE, &browser_directory);
command_line->AppendSwitchPath(switches::kExtraPluginDir,
diff --git a/content/test/webrtc_audio_device_test.cc b/content/test/webrtc_audio_device_test.cc
index cb01d8e..d9a0ecb 100644
--- a/content/test/webrtc_audio_device_test.cc
+++ b/content/test/webrtc_audio_device_test.cc
@@ -351,7 +351,7 @@ std::string WebRTCAudioDeviceTest::GetTestDataPath(
EXPECT_TRUE(PathService::Get(DIR_TEST_DATA, &path));
path = path.Append(file_name);
EXPECT_TRUE(file_util::PathExists(path));
-#ifdef OS_WIN
+#if defined(OS_WIN)
return WideToUTF8(path.value());
#else
return path.value();
diff --git a/courgette/memory_allocator.cc b/courgette/memory_allocator.cc
index 54b34da..c2bbd64 100644
--- a/courgette/memory_allocator.cc
+++ b/courgette/memory_allocator.cc
@@ -9,7 +9,7 @@
#include "base/file_util.h"
#include "base/stringprintf.h"
-#ifdef OS_WIN
+#if defined(OS_WIN)
namespace courgette {
diff --git a/courgette/memory_allocator.h b/courgette/memory_allocator.h
index eaef989..d848915 100644
--- a/courgette/memory_allocator.h
+++ b/courgette/memory_allocator.h
@@ -55,7 +55,7 @@ typedef bool CheckBool;
namespace courgette {
-#ifdef OS_WIN
+#if defined(OS_WIN)
// Manages a temporary file. The file is created in the %TEMP% folder and
// is deleted when the file handle is closed.
diff --git a/gpu/command_buffer/tests/occlusion_query_unittests.cc b/gpu/command_buffer/tests/occlusion_query_unittests.cc
index 88e3049..03e8916 100644
--- a/gpu/command_buffer/tests/occlusion_query_unittests.cc
+++ b/gpu/command_buffer/tests/occlusion_query_unittests.cc
@@ -68,7 +68,7 @@ void OcclusionQueryTest::DrawRect(float x, float z, float scale, float* color) {
}
TEST_F(OcclusionQueryTest, Occlusion) {
-#ifdef OS_MACOSX
+#if defined(OS_MACOSX)
EXPECT_TRUE(GLTestHelper::HasExtension("GL_EXT_occlusion_query_boolean"))
<< "GL_EXT_occlusion_query_boolean is required on OSX";
#endif
diff --git a/tools/metrics/testdata/foo.cc b/tools/metrics/testdata/foo.cc
index b999060..bd3d3c7 100644
--- a/tools/metrics/testdata/foo.cc
+++ b/tools/metrics/testdata/foo.cc
@@ -12,7 +12,7 @@
#if !defined(OS_CAT)
-#ifdef OS_WIN
+#if defined(OS_WIN)
#endif // !OS_ANDROID && !OS_IOS
#endif // OS_CAT
diff --git a/tools/metrics/testdata/foo_ignored.txt b/tools/metrics/testdata/foo_ignored.txt
index 5700554..2b186f9 100644
--- a/tools/metrics/testdata/foo_ignored.txt
+++ b/tools/metrics/testdata/foo_ignored.txt
@@ -1,4 +1,4 @@
#if defined(OS_ANDROID)
-#ifdef OS_WIN
+#if defined(OS_WIN)
diff --git a/tools/metrics/testdata/subdir/foo_test.mm b/tools/metrics/testdata/subdir/foo_test.mm
index 7f66b11..adf1f89 100644
--- a/tools/metrics/testdata/subdir/foo_test.mm
+++ b/tools/metrics/testdata/subdir/foo_test.mm
@@ -4,5 +4,5 @@
#if defined(OS_ANDROID)
-#ifdef OS_WIN
+#if defined(OS_WIN)
diff --git a/webkit/plugins/npapi/test/plugin_get_javascript_url_test.cc b/webkit/plugins/npapi/test/plugin_get_javascript_url_test.cc
index ed438be..77d728d 100644
--- a/webkit/plugins/npapi/test/plugin_get_javascript_url_test.cc
+++ b/webkit/plugins/npapi/test/plugin_get_javascript_url_test.cc
@@ -28,7 +28,7 @@ ExecuteGetJavascriptUrlTest::ExecuteGetJavascriptUrlTest(
NPP id, NPNetscapeFuncs *host_functions)
: PluginTest(id, host_functions),
test_started_(false),
-#ifdef OS_WIN
+#if defined(OS_WIN)
window_(NULL),
#endif
npn_evaluate_context_(false) {
@@ -46,7 +46,7 @@ NPError ExecuteGetJavascriptUrlTest::SetWindow(NPWindow* pNPWindow) {
reinterpret_cast<void*>(SELF_URL_STREAM_ID));
test_started_ = true;
-#ifdef OS_WIN
+#if defined(OS_WIN)
HWND window_handle = reinterpret_cast<HWND>(pNPWindow->window);
if (!::GetProp(window_handle, L"Plugin_Instance")) {
// TODO: this propery leaks.
@@ -64,7 +64,7 @@ NPError ExecuteGetJavascriptUrlTest::SetWindow(NPWindow* pNPWindow) {
return NPERR_NO_ERROR;
}
-#ifdef OS_WIN
+#if defined(OS_WIN)
void CALLBACK ExecuteGetJavascriptUrlTest::TimerProc(
HWND window, UINT message, UINT_PTR timer_id, DWORD elapsed_time) {
ExecuteGetJavascriptUrlTest* this_instance =
@@ -171,7 +171,7 @@ NPError ExecuteGetJavascriptUrlTest::DestroyStream(NPStream *stream,
return NPERR_INVALID_PARAM;
}
-#ifdef OS_WIN
+#if defined(OS_WIN)
KillTimer(window_, kNPNEvaluateTimerID);
#endif
diff --git a/webkit/plugins/npapi/webplugin_delegate_impl.cc b/webkit/plugins/npapi/webplugin_delegate_impl.cc
index 3ff6116..0c4ae87 100644
--- a/webkit/plugins/npapi/webplugin_delegate_impl.cc
+++ b/webkit/plugins/npapi/webplugin_delegate_impl.cc
@@ -157,7 +157,7 @@ void WebPluginDelegateImpl::SetFocus(bool focused) {
// mode when it loses focus, and its full screen window causes the browser to
// lose focus.
has_webkit_focus_ = focused;
-#ifndef OS_WIN
+#if !defined(OS_WIN)
if (containing_view_has_focus_)
SetPluginHasFocus(focused);
#else
@@ -176,7 +176,7 @@ void WebPluginDelegateImpl::SetContentAreaHasFocus(bool has_focus) {
containing_view_has_focus_ = has_focus;
if (!windowless_)
return;
-#ifndef OS_WIN // See SetFocus above.
+#if !defined(OS_WIN) // See SetFocus above.
SetPluginHasFocus(containing_view_has_focus_ && has_webkit_focus_);
#endif
}