Index: ios/net/cookies/cookie_store_ios_client.mm |
diff --git a/ios/net/cookies/cookie_store_ios_client.mm b/ios/net/cookies/cookie_store_ios_client.mm |
new file mode 100644 |
index 0000000000000000000000000000000000000000..c8cbd14c93ac3a83d364ee2c0fc4938c10019f30 |
--- /dev/null |
+++ b/ios/net/cookies/cookie_store_ios_client.mm |
@@ -0,0 +1,35 @@ |
+// Copyright 2014 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#include "ios/net/cookies/cookie_store_ios_client.h" |
+ |
+namespace { |
+// The CookieStoreIOSClient. |
+net::CookieStoreIOSClient* g_client; |
+} // namespace |
+ |
+namespace net { |
+ |
+void SetCookieStoreIOSClient(CookieStoreIOSClient* client) { |
+ g_client = client; |
+} |
+ |
+CookieStoreIOSClient* GetCookieStoreIOSClient() { |
+ return g_client; |
+} |
+ |
+CookieStoreIOSClient::CookieStoreIOSClient() {} |
+ |
+CookieStoreIOSClient::~CookieStoreIOSClient() {} |
+ |
+void CookieStoreIOSClient::WillChangeCookieStorage() const {} |
+ |
+void CookieStoreIOSClient::DidChangeCookieStorage() const {} |
+ |
+scoped_refptr<base::SequencedTaskRunner> |
+CookieStoreIOSClient::GetTaskRunner() const { |
+ return scoped_refptr<base::SequencedTaskRunner>(); |
+} |
+ |
+} // namespace net |