| 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 #ifndef CHROME_BROWSER_UI_COCOA_CONTENT_SETTINGS_COOKIE_DETAILS_H_ |
| 6 #define CHROME_BROWSER_UI_COCOA_CONTENT_SETTINGS_COOKIE_DETAILS_H_ |
| 7 |
| 5 #import <Cocoa/Cocoa.h> | 8 #import <Cocoa/Cocoa.h> |
| 6 | 9 |
| 7 #include "base/mac/scoped_nsobject.h" | 10 #include "base/mac/scoped_nsobject.h" |
| 8 #include "chrome/browser/browsing_data/browsing_data_cache_storage_helper.h" | 11 #include "chrome/browser/browsing_data/browsing_data_cache_storage_helper.h" |
| 9 #include "chrome/browser/browsing_data/browsing_data_database_helper.h" | 12 #include "chrome/browser/browsing_data/browsing_data_database_helper.h" |
| 10 #include "chrome/browser/browsing_data/browsing_data_indexed_db_helper.h" | 13 #include "chrome/browser/browsing_data/browsing_data_indexed_db_helper.h" |
| 11 #include "chrome/browser/browsing_data/browsing_data_local_storage_helper.h" | 14 #include "chrome/browser/browsing_data/browsing_data_local_storage_helper.h" |
| 12 #include "chrome/browser/browsing_data/browsing_data_service_worker_helper.h" | 15 #include "chrome/browser/browsing_data/browsing_data_service_worker_helper.h" |
| 13 #include "content/public/browser/appcache_service.h" | 16 #include "content/public/browser/appcache_service.h" |
| 14 | 17 |
| (...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 245 @private | 248 @private |
| 246 base::scoped_nsobject<CocoaCookieDetails> details_; | 249 base::scoped_nsobject<CocoaCookieDetails> details_; |
| 247 } | 250 } |
| 248 | 251 |
| 249 - (CocoaCookieDetails*)details; | 252 - (CocoaCookieDetails*)details; |
| 250 | 253 |
| 251 // The adapter assumes ownership of the details object | 254 // The adapter assumes ownership of the details object |
| 252 // in its initializer. | 255 // in its initializer. |
| 253 - (id)initWithDetails:(CocoaCookieDetails*)details; | 256 - (id)initWithDetails:(CocoaCookieDetails*)details; |
| 254 @end | 257 @end |
| 258 |
| 259 #endif // CHROME_BROWSER_UI_COCOA_CONTENT_SETTINGS_COOKIE_DETAILS_H_ |
| OLD | NEW |