| 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 #import "base/mac/cocoa_protocols.h" | 7 #import "base/mac/cocoa_protocols.h" |
| 8 #include "net/base/cookie_monster.h" | 8 #include "net/base/cookie_monster.h" |
| 9 | 9 |
| 10 @class CocoaCookieTreeNode; | 10 @class CocoaCookieTreeNode; |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 // Action sent by the expiration date popup when the user | 47 // Action sent by the expiration date popup when the user |
| 48 // selects the menu item "When I close my browser". | 48 // selects the menu item "When I close my browser". |
| 49 - (IBAction)setCookieDoesntHaveExplicitExpiration:(id)sender; | 49 - (IBAction)setCookieDoesntHaveExplicitExpiration:(id)sender; |
| 50 | 50 |
| 51 // Action sent by the expiration date popup when the user | 51 // Action sent by the expiration date popup when the user |
| 52 // selects the menu item with an explicit date/time of expiration. | 52 // selects the menu item with an explicit date/time of expiration. |
| 53 - (IBAction)setCookieHasExplicitExpiration:(id)sender; | 53 - (IBAction)setCookieHasExplicitExpiration:(id)sender; |
| 54 | 54 |
| 55 @end | 55 @end |
| 56 | 56 |
| OLD | NEW |