| Index: chrome/browser/ui/bookmarks/bookmark_utils.cc
|
| diff --git a/chrome/browser/ui/bookmarks/bookmark_utils.cc b/chrome/browser/ui/bookmarks/bookmark_utils.cc
|
| index 759bc0e511e0f654d63a3153bbeb97aec99b2abd..6e91d795c30f4033f472d44b8b6982e183279f00 100644
|
| --- a/chrome/browser/ui/bookmarks/bookmark_utils.cc
|
| +++ b/chrome/browser/ui/bookmarks/bookmark_utils.cc
|
| @@ -38,7 +38,7 @@
|
| #include "extensions/common/extension_set.h"
|
| #endif
|
|
|
| -#if !defined(OS_MACOSX) && !defined(OS_ANDROID)
|
| +#if defined(TOOLKIT_VIEWS)
|
| #include "ui/gfx/paint_vector_icon.h"
|
| #include "ui/gfx/vector_icons_public.h"
|
| #include "ui/native_theme/common_theme.h"
|
| @@ -204,7 +204,7 @@ BookmarkShortcutDisposition GetBookmarkShortcutDisposition(Profile* profile) {
|
| return BOOKMARK_SHORTCUT_DISPOSITION_UNCHANGED;
|
| }
|
|
|
| -#if !defined(OS_MACOSX) && !defined(OS_ANDROID)
|
| +#if defined(TOOLKIT_VIEWS)
|
| gfx::ImageSkia GetFolderIcon(gfx::VectorIconId id) {
|
| SkColor icon_color;
|
| ui::CommonThemeGetSystemColor(ui::NativeTheme::kColorId_ChromeIconGrey,
|
| @@ -497,7 +497,7 @@ bool IsValidBookmarkDropLocation(Profile* profile,
|
| return true;
|
| }
|
|
|
| -#if !defined(OS_MACOSX) && !defined(OS_ANDROID)
|
| +#if defined(TOOLKIT_VIEWS)
|
| gfx::ImageSkia GetBookmarkFolderIcon() {
|
| return GetFolderIcon(gfx::VectorIconId::FOLDER);
|
| }
|
|
|