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

Unified Diff: base/mac/mac_logging.h

Issue 10698149: Add minimal support for process_utils on iOS (Closed) Base URL: http://git.chromium.org/chromium/src.git@all-ios-tweak
Patch Set: Address review comments Created 8 years, 5 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: base/mac/mac_logging.h
diff --git a/base/mac/mac_logging.h b/base/mac/mac_logging.h
index c463a35c9c8acef96f628f7d837f887405e2d8d2..112b1a9e3034ca33d0640c2a18fac2f637f4a45f 100644
--- a/base/mac/mac_logging.h
+++ b/base/mac/mac_logging.h
@@ -6,10 +6,15 @@
#define BASE_MAC_MAC_LOGGING_H_
#pragma once
-#include <libkern/OSTypes.h>
-
+#include "base/compiler_specific.h"
#include "base/logging.h"
+#if defined(OS_IOS)
+#include "MacTypes.h"
+#else
+#include <libkern/OSTypes.h>
+#endif
+
// Use the OSSTATUS_LOG family to log messages related to errors in Mac OS X
// system routines that report status via an OSStatus or OSErr value. It is
// similar to the PLOG family which operates on errno, but because there is no

Powered by Google App Engine
This is Rietveld 408576698