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

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

Issue 2747693003: Add missing include guards in Cocoa code. (Closed)
Patch Set: Fix nit Created 3 years, 9 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
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 #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
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_
OLDNEW
« no previous file with comments | « chrome/browser/ui/cocoa/content_settings/cookie_details.h ('k') | chrome/browser/ui/cocoa/content_settings/cookie_tree_node.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698