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

Unified Diff: chrome/browser/gtk/location_bar_view_gtk.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/gtk/location_bar_view_gtk.cc
===================================================================
--- chrome/browser/gtk/location_bar_view_gtk.cc (revision 27027)
+++ chrome/browser/gtk/location_bar_view_gtk.cc (working copy)
@@ -401,14 +401,14 @@
}
void LocationBarViewGtk::UpdatePageActions() {
- std::vector<PageAction*> page_actions;
+ std::vector<ContextualAction*> page_actions;
if (profile_->GetExtensionsService())
page_actions = profile_->GetExtensionsService()->GetPageActions();
// Initialize on the first call, or re-inialize if more extensions have been
// loaded or added after startup.
if (page_actions.size() != page_action_views_.size()) {
- page_action_views_.reset(); // Delete the old views (if any).
+ page_action_views_.reset(); // Delete the old views (if any).
for (size_t i = 0; i < page_actions.size(); ++i) {
page_action_views_.push_back(
@@ -673,7 +673,8 @@
// LocationBarViewGtk::PageActionViewGtk
LocationBarViewGtk::PageActionViewGtk::PageActionViewGtk(
- LocationBarViewGtk* owner, Profile* profile, const PageAction* page_action)
+ LocationBarViewGtk* owner, Profile* profile,
+ const ContextualAction* page_action)
: owner_(owner),
profile_(profile),
page_action_(page_action) {
@@ -705,7 +706,7 @@
tracker_->StopTrackingImageLoad();
image_.Destroy();
event_box_.Destroy();
- for (size_t i=0; i < pixbufs_.size(); ++i) {
+ for (size_t i = 0; i < pixbufs_.size(); ++i) {
if (pixbufs_[i])
g_object_unref(pixbufs_[i]);
}
@@ -718,7 +719,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