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

Unified Diff: chrome/browser/ui/cocoa/location_bar/location_bar_view_mac.mm

Issue 102103005: Move c/c/e/extension_set to top-level extensions/ (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 7 years 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/cocoa/location_bar/location_bar_view_mac.mm
diff --git a/chrome/browser/ui/cocoa/location_bar/location_bar_view_mac.mm b/chrome/browser/ui/cocoa/location_bar/location_bar_view_mac.mm
index 826279f4e09cc24017c36edc2a68db5bc64fa09b..6f233f80ccc07a5ea91d121bc408728c8d5ab38a 100644
--- a/chrome/browser/ui/cocoa/location_bar/location_bar_view_mac.mm
+++ b/chrome/browser/ui/cocoa/location_bar/location_bar_view_mac.mm
@@ -61,6 +61,7 @@
#include "content/public/browser/notification_service.h"
#include "content/public/browser/web_contents.h"
#include "extensions/common/extension.h"
+#include "extensions/common/extension_set.h"
#include "extensions/common/feature_switch.h"
#include "grit/generated_resources.h"
#include "grit/theme_resources.h"
@@ -730,10 +731,10 @@ bool LocationBarViewMac::IsBookmarkStarHiddenByExtension() {
if (!extensions::FeatureSwitch::enable_override_bookmarks_ui()->IsEnabled())
return false;
- const ExtensionSet* extension_set =
+ const extensions::ExtensionSet* extension_set =
extensions::ExtensionSystem::GetForBrowserContext(profile_)
->extension_service()->extensions();
- for (ExtensionSet::const_iterator i = extension_set->begin();
+ for (extensions::ExtensionSet::const_iterator i = extension_set->begin();
i != extension_set->end(); ++i) {
const extensions::SettingsOverrides* settings_overrides =
extensions::SettingsOverrides::Get(i->get());
« no previous file with comments | « chrome/browser/ui/browser_browsertest.cc ('k') | chrome/browser/ui/fullscreen/fullscreen_exit_bubble_type.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698