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

Unified Diff: content/browser/download/download_item_impl.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: content/browser/download/download_item_impl.cc
diff --git a/content/browser/download/download_item_impl.cc b/content/browser/download/download_item_impl.cc
index 3e56e279a9f65d09189464cd4b19f51645009a93..1b434628ed577bf61e64dda33c135e1dda3f003d 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 ||

Powered by Google App Engine
This is Rietveld 408576698