| 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_VIEW_CONTROLLER_
H_ |
| 6 #define CHROME_BROWSER_UI_COCOA_CONTENT_SETTINGS_COOKIE_DETAILS_VIEW_CONTROLLER_
H_ |
| 7 |
| 5 #import <Cocoa/Cocoa.h> | 8 #import <Cocoa/Cocoa.h> |
| 6 | 9 |
| 7 #include "net/cookies/cookie_monster.h" | 10 #include "net/cookies/cookie_monster.h" |
| 8 | 11 |
| 9 @class CocoaCookieTreeNode; | 12 @class CocoaCookieTreeNode; |
| 10 @class GTMUILocalizerAndLayoutTweaker; | 13 @class GTMUILocalizerAndLayoutTweaker; |
| 11 | 14 |
| 12 // Controller for the view that displays the details of a cookie, | 15 // Controller for the view that displays the details of a cookie, |
| 13 // used both in the cookie prompt dialog as well as the | 16 // used both in the cookie prompt dialog as well as the |
| 14 // show cookies preference sheet of content settings preferences. | 17 // show cookies preference sheet of content settings preferences. |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 // Action sent by the expiration date popup when the user | 49 // Action sent by the expiration date popup when the user |
| 47 // selects the menu item "When I close my browser". | 50 // selects the menu item "When I close my browser". |
| 48 - (IBAction)setCookieDoesntHaveExplicitExpiration:(id)sender; | 51 - (IBAction)setCookieDoesntHaveExplicitExpiration:(id)sender; |
| 49 | 52 |
| 50 // Action sent by the expiration date popup when the user | 53 // Action sent by the expiration date popup when the user |
| 51 // selects the menu item with an explicit date/time of expiration. | 54 // selects the menu item with an explicit date/time of expiration. |
| 52 - (IBAction)setCookieHasExplicitExpiration:(id)sender; | 55 - (IBAction)setCookieHasExplicitExpiration:(id)sender; |
| 53 | 56 |
| 54 @end | 57 @end |
| 55 | 58 |
| 59 #endif // CHROME_BROWSER_UI_COCOA_CONTENT_SETTINGS_COOKIE_DETAILS_VIEW_CONTROLL
ER_H_ |
| OLD | NEW |