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_UI_BOOKMARKS_BOOKMARK_UTILS_H_ | 5 #ifndef CHROME_BROWSER_UI_BOOKMARKS_BOOKMARK_UTILS_H_ |
6 #define CHROME_BROWSER_UI_BOOKMARKS_BOOKMARK_UTILS_H_ | 6 #define CHROME_BROWSER_UI_BOOKMARKS_BOOKMARK_UTILS_H_ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/strings/string16.h" | 10 #include "base/strings/string16.h" |
11 #include "chrome/browser/ui/host_desktop.h" | |
12 #include "ui/base/window_open_disposition.h" | 11 #include "ui/base/window_open_disposition.h" |
| 12 #include "ui/gfx/host_desktop_type.h" |
13 #include "ui/gfx/native_widget_types.h" | 13 #include "ui/gfx/native_widget_types.h" |
14 | 14 |
15 class Browser; | 15 class Browser; |
16 class GURL; | 16 class GURL; |
17 class PrefService; | 17 class PrefService; |
18 class Profile; | 18 class Profile; |
19 | 19 |
20 namespace bookmarks { | 20 namespace bookmarks { |
21 class BookmarkNode; | 21 class BookmarkNode; |
22 struct BookmarkNodeData; | 22 struct BookmarkNodeData; |
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
152 #if defined(TOOLKIT_VIEWS) | 152 #if defined(TOOLKIT_VIEWS) |
153 // TODO(estade): If Mac wants to use these, return gfx::Image instead. | 153 // TODO(estade): If Mac wants to use these, return gfx::Image instead. |
154 gfx::ImageSkia GetBookmarkFolderIcon(); | 154 gfx::ImageSkia GetBookmarkFolderIcon(); |
155 gfx::ImageSkia GetBookmarkSupervisedFolderIcon(); | 155 gfx::ImageSkia GetBookmarkSupervisedFolderIcon(); |
156 gfx::ImageSkia GetBookmarkManagedFolderIcon(); | 156 gfx::ImageSkia GetBookmarkManagedFolderIcon(); |
157 #endif | 157 #endif |
158 | 158 |
159 } // namespace chrome | 159 } // namespace chrome |
160 | 160 |
161 #endif // CHROME_BROWSER_UI_BOOKMARKS_BOOKMARK_UTILS_H_ | 161 #endif // CHROME_BROWSER_UI_BOOKMARKS_BOOKMARK_UTILS_H_ |
OLD | NEW |