OLD | NEW |
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 "base/memory/scoped_nsobject.h" | 7 #include "base/memory/scoped_nsobject.h" |
9 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
10 #include "chrome/browser/cookies_tree_model.h" | 9 #include "chrome/browser/cookies_tree_model.h" |
11 #include "chrome/browser/ui/cocoa/constrained_window_mac.h" | 10 #include "chrome/browser/ui/cocoa/constrained_window_mac.h" |
12 #import "chrome/browser/ui/cocoa/content_settings/cookie_tree_node.h" | 11 #import "chrome/browser/ui/cocoa/content_settings/cookie_tree_node.h" |
13 #include "content/public/browser/notification_observer.h" | 12 #include "content/public/browser/notification_observer.h" |
14 #include "content/public/browser/notification_registrar.h" | 13 #include "content/public/browser/notification_registrar.h" |
15 | 14 |
16 @class CollectedCookiesWindowController; | 15 @class CollectedCookiesWindowController; |
17 @class CookieDetailsViewController; | 16 @class CookieDetailsViewController; |
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
114 - (CocoaCookieTreeNode*)cocoaBlockedTreeModel; | 113 - (CocoaCookieTreeNode*)cocoaBlockedTreeModel; |
115 - (void)setCocoaAllowedTreeModel:(CocoaCookieTreeNode*)model; | 114 - (void)setCocoaAllowedTreeModel:(CocoaCookieTreeNode*)model; |
116 - (void)setCocoaBlockedTreeModel:(CocoaCookieTreeNode*)model; | 115 - (void)setCocoaBlockedTreeModel:(CocoaCookieTreeNode*)model; |
117 | 116 |
118 // Returns the |allowedTreeModel_| and |blockedTreeModel_|. | 117 // Returns the |allowedTreeModel_| and |blockedTreeModel_|. |
119 - (CookiesTreeModel*)allowedTreeModel; | 118 - (CookiesTreeModel*)allowedTreeModel; |
120 - (CookiesTreeModel*)blockedTreeModel; | 119 - (CookiesTreeModel*)blockedTreeModel; |
121 | 120 |
122 - (void)loadTreeModelFromTabContents; | 121 - (void)loadTreeModelFromTabContents; |
123 @end | 122 @end |
OLD | NEW |