Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(254)

Side by Side Diff: chrome/browser/ui/bookmarks/bookmark_utils_desktop.cc

Issue 2733823003: Move final vector icons out of ui/gfx/vector_icons/ and remove the (Closed)
Patch Set: fix deps Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 #include "chrome/browser/ui/bookmarks/bookmark_utils_desktop.h" 5 #include "chrome/browser/ui/bookmarks/bookmark_utils_desktop.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "base/macros.h" 8 #include "base/macros.h"
9 #include "base/strings/string_number_conversions.h" 9 #include "base/strings/string_number_conversions.h"
10 #include "build/build_config.h" 10 #include "build/build_config.h"
(...skipping 27 matching lines...) Expand all
38 38
39 #if BUILDFLAG(ENABLE_EXTENSIONS) 39 #if BUILDFLAG(ENABLE_EXTENSIONS)
40 #include "chrome/browser/extensions/api/commands/command_service.h" 40 #include "chrome/browser/extensions/api/commands/command_service.h"
41 #include "extensions/browser/extension_registry.h" 41 #include "extensions/browser/extension_registry.h"
42 #include "extensions/common/extension_set.h" 42 #include "extensions/common/extension_set.h"
43 #endif 43 #endif
44 44
45 #if defined(TOOLKIT_VIEWS) 45 #if defined(TOOLKIT_VIEWS)
46 #include "ui/gfx/color_palette.h" 46 #include "ui/gfx/color_palette.h"
47 #include "ui/gfx/paint_vector_icon.h" 47 #include "ui/gfx/paint_vector_icon.h"
48 #include "ui/gfx/vector_icons_public.h"
49 #endif 48 #endif
50 49
51 #if defined(OS_WIN) 50 #if defined(OS_WIN)
52 #include "chrome/grit/theme_resources.h" 51 #include "chrome/grit/theme_resources.h"
53 #include "ui/base/material_design/material_design_controller.h" 52 #include "ui/base/material_design/material_design_controller.h"
54 #include "ui/base/resource/resource_bundle.h" 53 #include "ui/base/resource/resource_bundle.h"
55 #endif 54 #endif
56 55
57 using bookmarks::BookmarkModel; 56 using bookmarks::BookmarkModel;
58 using bookmarks::BookmarkNode; 57 using bookmarks::BookmarkNode;
(...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after
266 while (iterator.has_next()) { 265 while (iterator.has_next()) {
267 const GURL* url = iterator.NextURL(); 266 const GURL* url = iterator.NextURL();
268 if (IsURLAllowedInIncognito(*url, browser_context)) 267 if (IsURLAllowedInIncognito(*url, browser_context))
269 return true; 268 return true;
270 } 269 }
271 return false; 270 return false;
272 } 271 }
273 #endif // !defined(OS_ANDROID) 272 #endif // !defined(OS_ANDROID)
274 273
275 } // namespace chrome 274 } // namespace chrome
OLDNEW
« no previous file with comments | « chrome/browser/ui/android/infobars/simple_confirm_infobar_builder.cc ('k') | chrome/browser/ui/chrome_select_file_policy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698