Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2779)

Unified Diff: chrome/browser/printing/print_dialog_cloud.cc

Issue 12545059: ifdef OS_NAME -> if defined(OS_NAME) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/printing/print_dialog_cloud.cc
diff --git a/chrome/browser/printing/print_dialog_cloud.cc b/chrome/browser/printing/print_dialog_cloud.cc
index c97d31415523963db0e67c76446c6b537b76a3c3..7b7b7a8f9fa75ae9c58a1009f92481da4be3a1fe 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);

Powered by Google App Engine
This is Rietveld 408576698