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

Unified Diff: chrome/browser/policy/policy_helpers.cc

Issue 138163015: More fixes to enable ios build with policy. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: removed obsolete files from gyp Created 6 years, 11 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/policy/policy_helpers.cc
diff --git a/chrome/browser/policy/policy_helpers.cc b/chrome/browser/policy/policy_helpers.cc
index 9f71a942c487c6e3b309643e163cdb991a4291eb..5b176cbfa333a69149d4efeb87f603f379d2acf3 100644
--- a/chrome/browser/policy/policy_helpers.cc
+++ b/chrome/browser/policy/policy_helpers.cc
@@ -6,7 +6,7 @@
#include "url/gurl.h"
-#if !defined(OS_CHROMEOS)
+#if !defined(OS_CHROMEOS) && !defined(OS_IOS)
#include "chrome/browser/signin/signin_manager.h"
#include "google_apis/gaia/gaia_urls.h"
#endif
@@ -14,7 +14,7 @@
namespace policy {
bool SkipBlacklistForURL(const GURL& url) {
-#if defined(OS_CHROMEOS)
+#if defined(OS_CHROMEOS) || defined(OS_IOS)
return false;
#else
static const char kServiceLoginAuth[] = "/ServiceLoginAuth";

Powered by Google App Engine
This is Rietveld 408576698