| 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 "third_party/skia/include/core/SkColor.h" | 11 #include "third_party/skia/include/core/SkColor.h" |
| 12 #include "ui/base/window_open_disposition.h" | 12 #include "ui/base/window_open_disposition.h" |
| 13 #include "ui/gfx/native_widget_types.h" | 13 #include "ui/gfx/native_widget_types.h" |
| 14 | 14 |
| 15 class GURL; | 15 class GURL; |
| 16 class PrefService; | |
| 17 class Profile; | 16 class Profile; |
| 18 | 17 |
| 19 namespace bookmarks { | 18 namespace bookmarks { |
| 20 class BookmarkNode; | 19 class BookmarkNode; |
| 21 struct BookmarkNodeData; | 20 struct BookmarkNodeData; |
| 22 } | 21 } |
| 23 | 22 |
| 24 namespace content { | 23 namespace content { |
| 25 class BrowserContext; | 24 class BrowserContext; |
| 26 class WebContents; | 25 class WebContents; |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 // color. | 105 // color. |
| 107 // TODO(estade): If Mac wants to use these, return gfx::Image instead. | 106 // TODO(estade): If Mac wants to use these, return gfx::Image instead. |
| 108 gfx::ImageSkia GetBookmarkFolderIcon(SkColor text_color); | 107 gfx::ImageSkia GetBookmarkFolderIcon(SkColor text_color); |
| 109 gfx::ImageSkia GetBookmarkSupervisedFolderIcon(SkColor text_color); | 108 gfx::ImageSkia GetBookmarkSupervisedFolderIcon(SkColor text_color); |
| 110 gfx::ImageSkia GetBookmarkManagedFolderIcon(SkColor text_color); | 109 gfx::ImageSkia GetBookmarkManagedFolderIcon(SkColor text_color); |
| 111 #endif | 110 #endif |
| 112 | 111 |
| 113 } // namespace chrome | 112 } // namespace chrome |
| 114 | 113 |
| 115 #endif // CHROME_BROWSER_UI_BOOKMARKS_BOOKMARK_UTILS_H_ | 114 #endif // CHROME_BROWSER_UI_BOOKMARKS_BOOKMARK_UTILS_H_ |
| OLD | NEW |