| 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 #ifndef CHROME_BROWSER_BOOKMARKS_RECENTLY_USED_FOLDERS_COMBO_MODEL_H_ | 5 #ifndef CHROME_BROWSER_UI_BOOKMARKS_RECENTLY_USED_FOLDERS_COMBO_MODEL_H_ |
| 6 #define CHROME_BROWSER_BOOKMARKS_RECENTLY_USED_FOLDERS_COMBO_MODEL_H_ | 6 #define CHROME_BROWSER_UI_BOOKMARKS_RECENTLY_USED_FOLDERS_COMBO_MODEL_H_ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| 11 #include "base/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
| 12 #include "ui/base/models/combobox_model.h" | 12 #include "ui/base/models/combobox_model.h" |
| 13 | 13 |
| 14 class BookmarkModel; | 14 class BookmarkModel; |
| 15 class BookmarkNode; | 15 class BookmarkNode; |
| 16 | 16 |
| (...skipping 27 matching lines...) Expand all Loading... |
| 44 std::vector<Item> items_; | 44 std::vector<Item> items_; |
| 45 | 45 |
| 46 BookmarkModel* bookmark_model_; | 46 BookmarkModel* bookmark_model_; |
| 47 | 47 |
| 48 // The index of the original parent folder. | 48 // The index of the original parent folder. |
| 49 int node_parent_index_; | 49 int node_parent_index_; |
| 50 | 50 |
| 51 DISALLOW_COPY_AND_ASSIGN(RecentlyUsedFoldersComboModel); | 51 DISALLOW_COPY_AND_ASSIGN(RecentlyUsedFoldersComboModel); |
| 52 }; | 52 }; |
| 53 | 53 |
| 54 #endif // CHROME_BROWSER_BOOKMARKS_RECENTLY_USED_FOLDERS_COMBO_MODEL_H_ | 54 #endif // CHROME_BROWSER_UI_BOOKMARKS_RECENTLY_USED_FOLDERS_COMBO_MODEL_H_ |
| OLD | NEW |