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

Unified Diff: chrome/browser/ui/gtk/location_bar_view_gtk.cc

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: Move ExtensionSet to extensions namespace 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/gtk/location_bar_view_gtk.cc
diff --git a/chrome/browser/ui/gtk/location_bar_view_gtk.cc b/chrome/browser/ui/gtk/location_bar_view_gtk.cc
index c2083cc13a6471f734e1fe002d74c5490bcfe26d..19e28b555d9c57193032abec28c99fcdab39584a 100644
--- a/chrome/browser/ui/gtk/location_bar_view_gtk.cc
+++ b/chrome/browser/ui/gtk/location_bar_view_gtk.cc
@@ -1942,8 +1942,8 @@ void LocationBarViewGtk::PageActionViewGtk::InspectPopup(
}
void LocationBarViewGtk::PageActionViewGtk::ConnectPageActionAccelerator() {
- const ExtensionSet* extensions = owner_->browser()->profile()->
- GetExtensionService()->extensions();
+ const extensions::ExtensionSet* extensions =
+ owner_->browser()->profile()->GetExtensionService()->extensions();
const Extension* extension =
extensions->GetByID(page_action_->extension_id());
window_ = owner_->browser()->window()->GetNativeWindow();

Powered by Google App Engine
This is Rietveld 408576698