| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 "chrome/browser/browsing_data_database_helper.h" | 7 #include "chrome/browser/browsing_data_database_helper.h" |
| 8 #include "chrome/browser/browsing_data_indexed_db_helper.h" | 8 #include "chrome/browser/browsing_data_indexed_db_helper.h" |
| 9 #include "chrome/browser/browsing_data_local_storage_helper.h" | 9 #include "chrome/browser/browsing_data_local_storage_helper.h" |
| 10 #include "base/scoped_nsobject.h" | 10 #include "base/scoped_nsobject.h" |
| (...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 215 scoped_nsobject<CocoaCookieDetails> details_; | 215 scoped_nsobject<CocoaCookieDetails> details_; |
| 216 } | 216 } |
| 217 | 217 |
| 218 - (CocoaCookieDetails*)details; | 218 - (CocoaCookieDetails*)details; |
| 219 | 219 |
| 220 // The adapter assumes ownership of the details object | 220 // The adapter assumes ownership of the details object |
| 221 // in its initializer. | 221 // in its initializer. |
| 222 - (id)initWithDetails:(CocoaCookieDetails*)details; | 222 - (id)initWithDetails:(CocoaCookieDetails*)details; |
| 223 @end | 223 @end |
| 224 | 224 |
| OLD | NEW |