| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 #ifndef COMPONENTS_BOOKMARKS_CORE_BROWSER_BOOKMARK_NODE_H_ | 5 #ifndef COMPONENTS_BOOKMARKS_BROWSER_BOOKMARK_NODE_H_ |
| 6 #define COMPONENTS_BOOKMARKS_CORE_BROWSER_BOOKMARK_NODE_H_ | 6 #define COMPONENTS_BOOKMARKS_BROWSER_BOOKMARK_NODE_H_ |
| 7 | 7 |
| 8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
| 9 #include "base/task/cancelable_task_tracker.h" | 9 #include "base/task/cancelable_task_tracker.h" |
| 10 #include "base/time/time.h" | 10 #include "base/time/time.h" |
| 11 #include "components/favicon_base/favicon_types.h" | 11 #include "components/favicon_base/favicon_types.h" |
| 12 #include "ui/base/models/tree_node_model.h" | 12 #include "ui/base/models/tree_node_model.h" |
| 13 #include "ui/gfx/image/image.h" | 13 #include "ui/gfx/image/image.h" |
| 14 #include "url/gurl.h" | 14 #include "url/gurl.h" |
| 15 | 15 |
| 16 class BookmarkModel; | 16 class BookmarkModel; |
| (...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 202 | 202 |
| 203 // BookmarkNode overrides: | 203 // BookmarkNode overrides: |
| 204 virtual bool IsVisible() const OVERRIDE; | 204 virtual bool IsVisible() const OVERRIDE; |
| 205 | 205 |
| 206 private: | 206 private: |
| 207 bool visible_; | 207 bool visible_; |
| 208 | 208 |
| 209 DISALLOW_COPY_AND_ASSIGN(BookmarkPermanentNode); | 209 DISALLOW_COPY_AND_ASSIGN(BookmarkPermanentNode); |
| 210 }; | 210 }; |
| 211 | 211 |
| 212 #endif // COMPONENTS_BOOKMARKS_CORE_BROWSER_BOOKMARK_NODE_H_ | 212 #endif // COMPONENTS_BOOKMARKS_BROWSER_BOOKMARK_NODE_H_ |
| OLD | NEW |