OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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 #import <Cocoa/Cocoa.h> | 5 #import <Cocoa/Cocoa.h> |
6 | 6 |
7 #include "base/memory/scoped_nsobject.h" | 7 #include "base/memory/scoped_nsobject.h" |
8 #include "chrome/browser/browsing_data_database_helper.h" | 8 #include "chrome/browser/browsing_data/browsing_data_database_helper.h" |
9 #include "chrome/browser/browsing_data_indexed_db_helper.h" | 9 #include "chrome/browser/browsing_data/browsing_data_indexed_db_helper.h" |
10 #include "chrome/browser/browsing_data_local_storage_helper.h" | 10 #include "chrome/browser/browsing_data/browsing_data_local_storage_helper.h" |
11 #include "webkit/appcache/appcache_service.h" | 11 #include "webkit/appcache/appcache_service.h" |
12 | 12 |
13 class CookieTreeNode; | 13 class CookieTreeNode; |
14 | 14 |
15 namespace net { | 15 namespace net { |
16 class CanonicalCookie; | 16 class CanonicalCookie; |
17 } | 17 } |
18 | 18 |
19 // This enum specifies the type of information contained in the | 19 // This enum specifies the type of information contained in the |
20 // cookie details. | 20 // cookie details. |
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
215 @private | 215 @private |
216 scoped_nsobject<CocoaCookieDetails> details_; | 216 scoped_nsobject<CocoaCookieDetails> details_; |
217 } | 217 } |
218 | 218 |
219 - (CocoaCookieDetails*)details; | 219 - (CocoaCookieDetails*)details; |
220 | 220 |
221 // The adapter assumes ownership of the details object | 221 // The adapter assumes ownership of the details object |
222 // in its initializer. | 222 // in its initializer. |
223 - (id)initWithDetails:(CocoaCookieDetails*)details; | 223 - (id)initWithDetails:(CocoaCookieDetails*)details; |
224 @end | 224 @end |
OLD | NEW |