| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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_VIEWS_BOOKMARK_TABLE_VIEW_H_ | 5 #ifndef CHROME_BROWSER_VIEWS_BOOKMARK_TABLE_VIEW_H_ |
| 6 #define CHROME_BROWSER_VIEWS_BOOKMARK_TABLE_VIEW_H_ | 6 #define CHROME_BROWSER_VIEWS_BOOKMARK_TABLE_VIEW_H_ |
| 7 | 7 |
| 8 #include "chrome/browser/bookmarks/bookmark_drag_data.h" | 8 #include "chrome/browser/bookmarks/bookmark_drag_data.h" |
| 9 #include "chrome/browser/bookmarks/bookmark_drop_info.h" | 9 #include "chrome/browser/bookmarks/bookmark_drop_info.h" |
| 10 #include "views/controls/menu/menu.h" | |
| 11 #include "views/controls/table/table_view.h" | 10 #include "views/controls/table/table_view.h" |
| 12 | 11 |
| 13 class BookmarkModel; | 12 class BookmarkModel; |
| 14 class BookmarkNode; | 13 class BookmarkNode; |
| 15 class BookmarkTableModel; | 14 class BookmarkTableModel; |
| 16 namespace gfx { | 15 namespace gfx { |
| 17 class Font; | 16 class Font; |
| 18 } | 17 } |
| 19 class OSExchangeData; | 18 class OSExchangeData; |
| 20 class PrefService; | 19 class PrefService; |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 155 scoped_ptr<DropInfo> drop_info_; | 154 scoped_ptr<DropInfo> drop_info_; |
| 156 | 155 |
| 157 bool show_path_column_; | 156 bool show_path_column_; |
| 158 | 157 |
| 159 std::wstring alt_text_; | 158 std::wstring alt_text_; |
| 160 | 159 |
| 161 DISALLOW_COPY_AND_ASSIGN(BookmarkTableView); | 160 DISALLOW_COPY_AND_ASSIGN(BookmarkTableView); |
| 162 }; | 161 }; |
| 163 | 162 |
| 164 #endif // CHROME_BROWSER_VIEWS_BOOKMARK_TABLE_VIEW_H_ | 163 #endif // CHROME_BROWSER_VIEWS_BOOKMARK_TABLE_VIEW_H_ |
| OLD | NEW |