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