| 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";
|
|
|