Index: android_webview/native/cookie_manager.cc |
diff --git a/android_webview/native/cookie_manager.cc b/android_webview/native/cookie_manager.cc |
index 6362d60dd3c6348d87a1127523b234aec249a026..f47cf57dc726efd617d2d11d80860dacaaef9e4a 100644 |
--- a/android_webview/native/cookie_manager.cc |
+++ b/android_webview/native/cookie_manager.cc |
@@ -28,11 +28,11 @@ |
#include "content/public/browser/browser_thread.h" |
#include "content/public/browser/cookie_crypto_delegate.h" |
#include "content/public/browser/cookie_store_factory.h" |
-#include "content/public/common/url_constants.h" |
#include "jni/AwCookieManager_jni.h" |
#include "net/cookies/cookie_monster.h" |
#include "net/cookies/cookie_options.h" |
#include "net/url_request/url_request_context.h" |
+#include "url/url_constants.h" |
using base::FilePath; |
using base::WaitableEvent; |
@@ -508,7 +508,7 @@ bool CookieManager::AllowFileSchemeCookies() { |
} |
bool CookieManager::AllowFileSchemeCookiesLocked() { |
- return cookie_monster_->IsCookieableScheme(content::kFileScheme); |
+ return cookie_monster_->IsCookieableScheme(url::kFileScheme); |
} |
void CookieManager::SetAcceptFileSchemeCookies(bool accept) { |