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

Unified Diff: chrome/browser/ui/cocoa/cookie_tree_node.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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/cocoa/cookie_tree_node.h
===================================================================
--- chrome/browser/ui/cocoa/cookie_tree_node.h (revision 71852)
+++ chrome/browser/ui/cocoa/cookie_tree_node.h (working copy)
@@ -1,37 +0,0 @@
-// Copyright (c) 2010 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#import <Cocoa/Cocoa.h>
-
-#include "base/scoped_nsobject.h"
-#include "chrome/browser/cookies_tree_model.h"
-#include "chrome/browser/ui/cocoa/cookie_details.h"
-
-@interface CocoaCookieTreeNode : NSObject {
- scoped_nsobject<NSString> title_;
- scoped_nsobject<NSMutableArray> children_;
- scoped_nsobject<CocoaCookieDetails> details_;
- CookieTreeNode* treeNode_; // weak
-}
-
-// Designated initializer.
-- (id)initWithNode:(CookieTreeNode*)node;
-
-// Re-sets all the members of the node based on |treeNode_|.
-- (void)rebuild;
-
-// Common getters..
-- (NSString*)title;
-- (CocoaCookieDetailsType)nodeType;
-- (ui::TreeModelNode*)treeNode;
-
-// |-mutableChildren| exists so that the CookiesTreeModelObserverBridge can
-// operate on the children. Note that this lazily creates children.
-- (NSMutableArray*)mutableChildren;
-- (NSArray*)children;
-- (BOOL)isLeaf;
-
-- (CocoaCookieDetails*)details;
-
-@end

Powered by Google App Engine
This is Rietveld 408576698