Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(212)

Side by Side Diff: chrome/browser/ui/cocoa/content_settings/cookie_details_view_controller.h

Issue 10831025: mac: Remove now-unneeded includes of cocoa_protocols.h (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698