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

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

Issue 8536010: Cleanup: Remove unneeded forward declarations from chrome/browser/ui/gtk and chrome/browser/ui/co... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: address comments Created 9 years, 1 month 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
« no previous file with comments | « no previous file | chrome/browser/ui/cocoa/download/download_shelf_mac.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 #include "base/memory/scoped_nsobject.h" 7 #include "base/memory/scoped_nsobject.h"
8 #include "chrome/browser/browsing_data_database_helper.h" 8 #include "chrome/browser/browsing_data_database_helper.h"
9 #include "chrome/browser/browsing_data_indexed_db_helper.h" 9 #include "chrome/browser/browsing_data_indexed_db_helper.h"
10 #include "chrome/browser/browsing_data_local_storage_helper.h" 10 #include "chrome/browser/browsing_data_local_storage_helper.h"
11 #include "net/base/cookie_monster.h" 11 #include "net/base/cookie_monster.h"
12 #include "webkit/appcache/appcache_service.h" 12 #include "webkit/appcache/appcache_service.h"
13 13
14 class CookieTreeNode; 14 class CookieTreeNode;
15 class CookiePromptModalDialog;
16 15
17 // This enum specifies the type of information contained in the 16 // This enum specifies the type of information contained in the
18 // cookie details. 17 // cookie details.
19 enum CocoaCookieDetailsType { 18 enum CocoaCookieDetailsType {
20 // Represents grouping of cookie data, used in the cookie tree. 19 // Represents grouping of cookie data, used in the cookie tree.
21 kCocoaCookieDetailsTypeFolder = 0, 20 kCocoaCookieDetailsTypeFolder = 0,
22 21
23 // Detailed information about a cookie, used both in the cookie 22 // Detailed information about a cookie, used both in the cookie
24 // tree and the cookie prompt. 23 // tree and the cookie prompt.
25 kCocoaCookieDetailsTypeCookie, 24 kCocoaCookieDetailsTypeCookie,
(...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after
214 @private 213 @private
215 scoped_nsobject<CocoaCookieDetails> details_; 214 scoped_nsobject<CocoaCookieDetails> details_;
216 } 215 }
217 216
218 - (CocoaCookieDetails*)details; 217 - (CocoaCookieDetails*)details;
219 218
220 // The adapter assumes ownership of the details object 219 // The adapter assumes ownership of the details object
221 // in its initializer. 220 // in its initializer.
222 - (id)initWithDetails:(CocoaCookieDetails*)details; 221 - (id)initWithDetails:(CocoaCookieDetails*)details;
223 @end 222 @end
224
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/ui/cocoa/download/download_shelf_mac.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698