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

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

Issue 10453101: Convert most of the rest of chrome to ImageSkia (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 6 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) 2011 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" 7 #import "base/mac/cocoa_protocols.h"
8 #include "base/memory/scoped_nsobject.h" 8 #include "base/memory/scoped_nsobject.h"
9 #include "base/memory/scoped_ptr.h" 9 #include "base/memory/scoped_ptr.h"
10 #include "chrome/browser/cookies_tree_model.h" 10 #include "chrome/browser/cookies_tree_model.h"
11 #include "chrome/browser/ui/cocoa/constrained_window_mac.h" 11 #include "chrome/browser/ui/cocoa/constrained_window_mac.h"
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 43
44 ConstrainedWindow* window_; 44 ConstrainedWindow* window_;
45 45
46 CollectedCookiesWindowController* sheet_controller_; 46 CollectedCookiesWindowController* sheet_controller_;
47 47
48 DISALLOW_COPY_AND_ASSIGN(CollectedCookiesMac); 48 DISALLOW_COPY_AND_ASSIGN(CollectedCookiesMac);
49 }; 49 };
50 50
51 // Controller for the collected cookies dialog. This class stores an internal 51 // Controller for the collected cookies dialog. This class stores an internal
52 // copy of the CookiesTreeModel but with Cocoa-converted values (NSStrings and 52 // copy of the CookiesTreeModel but with Cocoa-converted values (NSStrings and
53 // NSImages instead of std::strings and SkBitmaps). Doing this allows us to use 53 // NSImages instead of std::strings and ImageSkias). Doing this allows us to use
54 // bindings for the interface. Changes are pushed to this internal model via a 54 // bindings for the interface. Changes are pushed to this internal model via a
55 // very thin bridge (see cookies_window_controller.h). 55 // very thin bridge (see cookies_window_controller.h).
56 @interface CollectedCookiesWindowController : NSWindowController 56 @interface CollectedCookiesWindowController : NSWindowController
57 <NSOutlineViewDelegate, 57 <NSOutlineViewDelegate,
58 NSTabViewDelegate, 58 NSTabViewDelegate,
59 NSWindowDelegate> { 59 NSWindowDelegate> {
60 @private 60 @private
61 // Platform-independent model. 61 // Platform-independent model.
62 scoped_ptr<CookiesTreeModel> allowedTreeModel_; 62 scoped_ptr<CookiesTreeModel> allowedTreeModel_;
63 scoped_ptr<CookiesTreeModel> blockedTreeModel_; 63 scoped_ptr<CookiesTreeModel> blockedTreeModel_;
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
115 - (CocoaCookieTreeNode*)cocoaBlockedTreeModel; 115 - (CocoaCookieTreeNode*)cocoaBlockedTreeModel;
116 - (void)setCocoaAllowedTreeModel:(CocoaCookieTreeNode*)model; 116 - (void)setCocoaAllowedTreeModel:(CocoaCookieTreeNode*)model;
117 - (void)setCocoaBlockedTreeModel:(CocoaCookieTreeNode*)model; 117 - (void)setCocoaBlockedTreeModel:(CocoaCookieTreeNode*)model;
118 118
119 // Returns the |allowedTreeModel_| and |blockedTreeModel_|. 119 // Returns the |allowedTreeModel_| and |blockedTreeModel_|.
120 - (CookiesTreeModel*)allowedTreeModel; 120 - (CookiesTreeModel*)allowedTreeModel;
121 - (CookiesTreeModel*)blockedTreeModel; 121 - (CookiesTreeModel*)blockedTreeModel;
122 122
123 - (void)loadTreeModelFromTabContentsWrapper; 123 - (void)loadTreeModelFromTabContentsWrapper;
124 @end 124 @end
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698