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 #include "chrome/browser/ui/cocoa/cookie_details.h" | 5 #include "chrome/browser/ui/cocoa/content_settings/cookie_details.h" |
6 | 6 |
7 #include "app/l10n_util_mac.h" | 7 #include "app/l10n_util_mac.h" |
8 #import "base/i18n/time_formatting.h" | 8 #import "base/i18n/time_formatting.h" |
9 #include "base/sys_string_conversions.h" | 9 #include "base/sys_string_conversions.h" |
10 #include "grit/generated_resources.h" | 10 #include "grit/generated_resources.h" |
11 #include "chrome/browser/cookies_tree_model.h" | 11 #include "chrome/browser/cookies_tree_model.h" |
12 #include "webkit/appcache/appcache_service.h" | 12 #include "webkit/appcache/appcache_service.h" |
13 | 13 |
14 #pragma mark Cocoa Cookie Details | 14 #pragma mark Cocoa Cookie Details |
15 | 15 |
(...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
290 details_.reset([details retain]); | 290 details_.reset([details retain]); |
291 } | 291 } |
292 return self; | 292 return self; |
293 } | 293 } |
294 | 294 |
295 - (CocoaCookieDetails*)details { | 295 - (CocoaCookieDetails*)details { |
296 return details_.get(); | 296 return details_.get(); |
297 } | 297 } |
298 | 298 |
299 @end | 299 @end |
OLD | NEW |