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

Unified Diff: chrome/browser/views/location_bar_view.cc

Issue 243001: Implement Browser Actions extensions.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 3 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/views/location_bar_view.cc
===================================================================
--- chrome/browser/views/location_bar_view.cc (revision 27027)
+++ chrome/browser/views/location_bar_view.cc (working copy)
@@ -655,7 +655,7 @@
}
void LocationBarView::RefreshPageActionViews() {
- std::vector<PageAction*> page_actions;
+ std::vector<ContextualAction*> page_actions;
if (profile_->GetExtensionsService())
page_actions = profile_->GetExtensionsService()->GetPageActions();
@@ -1192,7 +1192,7 @@
LocationBarView::PageActionImageView::PageActionImageView(
LocationBarView* owner,
Profile* profile,
- const PageAction* page_action,
+ const ContextualAction* page_action,
const BubblePositioner* bubble_positioner)
: LocationBarImageView(bubble_positioner),
owner_(owner),
@@ -1259,7 +1259,8 @@
current_tab_id_ = ExtensionTabUtil::GetTabId(contents);
current_url_ = url;
- const PageActionState* state = contents->GetPageActionState(page_action_);
+ const ContextualActionState* state =
+ contents->GetPageActionState(page_action_);
bool visible = state != NULL;
if (visible) {
// Set the tooltip.

Powered by Google App Engine
This is Rietveld 408576698