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

Side by Side Diff: chrome/browser/ui/cocoa/options/cookies_window_controller.h

Issue 6294008: [Mac] Organize some files into chrome/browser/ui/cocoa/content_settings/.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 11 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) 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 "base/scoped_nsobject.h" 8 #include "base/scoped_nsobject.h"
9 #include "base/scoped_ptr.h" 9 #include "base/scoped_ptr.h"
10 #include "chrome/browser/cookies_tree_model.h" 10 #include "chrome/browser/cookies_tree_model.h"
11 #import "chrome/browser/ui/cocoa/cookie_tree_node.h" 11 #import "chrome/browser/ui/cocoa/content_settings/cookie_tree_node.h"
12 #include "net/base/cookie_monster.h" 12 #include "net/base/cookie_monster.h"
13 13
14 @class CookiesWindowController; 14 @class CookiesWindowController;
15 @class CookieDetailsViewController; 15 @class CookieDetailsViewController;
16 class Profile; 16 class Profile;
17 17
18 namespace { 18 namespace {
19 class CookiesWindowControllerTest; 19 class CookiesWindowControllerTest;
20 } 20 }
21 21
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
140 140
141 @end 141 @end
142 142
143 @interface CookiesWindowController (UnitTesting) 143 @interface CookiesWindowController (UnitTesting)
144 - (void)deleteNodeAtIndexPath:(NSIndexPath*)path; 144 - (void)deleteNodeAtIndexPath:(NSIndexPath*)path;
145 - (void)clearBrowsingDataNotification:(NSNotification*)notif; 145 - (void)clearBrowsingDataNotification:(NSNotification*)notif;
146 - (CookiesTreeModelObserverBridge*)modelObserver; 146 - (CookiesTreeModelObserverBridge*)modelObserver;
147 - (NSArray*)icons; 147 - (NSArray*)icons;
148 - (void)loadTreeModelFromProfile; 148 - (void)loadTreeModelFromProfile;
149 @end 149 @end
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698