| OLD | NEW |
| 1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "ios/chrome/browser/net/cookie_util.h" | 5 #include "ios/chrome/browser/net/cookie_util.h" |
| 6 | 6 |
| 7 #import <Foundation/Foundation.h> | 7 #import <Foundation/Foundation.h> |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <sys/sysctl.h> | 9 #include <sys/sysctl.h> |
| 10 | 10 |
| 11 #include "base/logging.h" | 11 #include "base/logging.h" |
| 12 #import "base/mac/bind_objc_block.h" | 12 #import "base/mac/bind_objc_block.h" |
| 13 #include "base/memory/ptr_util.h" | 13 #include "base/memory/ptr_util.h" |
| 14 #include "base/memory/ref_counted.h" | 14 #include "base/memory/ref_counted.h" |
| 15 #include "base/threading/sequenced_worker_pool.h" | |
| 16 #include "ios/chrome/browser/browser_state/chrome_browser_state.h" | 15 #include "ios/chrome/browser/browser_state/chrome_browser_state.h" |
| 17 #include "ios/net/cookies/cookie_store_ios_persistent.h" | 16 #include "ios/net/cookies/cookie_store_ios_persistent.h" |
| 18 #include "ios/web/public/web_thread.h" | 17 #include "ios/web/public/web_thread.h" |
| 19 #include "net/cookies/cookie_monster.h" | 18 #include "net/cookies/cookie_monster.h" |
| 20 #include "net/cookies/cookie_store.h" | 19 #include "net/cookies/cookie_store.h" |
| 21 #include "net/extras/sqlite/sqlite_persistent_cookie_store.h" | 20 #include "net/extras/sqlite/sqlite_persistent_cookie_store.h" |
| 22 #include "net/url_request/url_request_context.h" | 21 #include "net/url_request/url_request_context.h" |
| 23 #include "net/url_request/url_request_context_getter.h" | 22 #include "net/url_request/url_request_context_getter.h" |
| 24 | 23 |
| 25 #if !defined(__has_feature) || !__has_feature(objc_arc) | 24 #if !defined(__has_feature) || !__has_feature(objc_arc) |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 126 browser_state->GetRequestContext(); | 125 browser_state->GetRequestContext(); |
| 127 web::WebThread::PostTask( | 126 web::WebThread::PostTask( |
| 128 web::WebThread::IO, FROM_HERE, base::BindBlockArc(^{ | 127 web::WebThread::IO, FROM_HERE, base::BindBlockArc(^{ |
| 129 getter->GetURLRequestContext() | 128 getter->GetURLRequestContext() |
| 130 ->cookie_store() | 129 ->cookie_store() |
| 131 ->DeleteSessionCookiesAsync(base::Bind(&DoNothing)); | 130 ->DeleteSessionCookiesAsync(base::Bind(&DoNothing)); |
| 132 })); | 131 })); |
| 133 } | 132 } |
| 134 | 133 |
| 135 } // namespace cookie_util | 134 } // namespace cookie_util |
| OLD | NEW |