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

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

Issue 337035: Replace ExtensionAction with ExtensionAction2. (Closed)
Patch Set: Remove todo Created 11 years, 2 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
« no previous file with comments | « chrome/browser/views/browser_actions_container.cc ('k') | chrome/browser/views/location_bar_view.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/views/location_bar_view.h
diff --git a/chrome/browser/views/location_bar_view.h b/chrome/browser/views/location_bar_view.h
index 5accd9be7a171325a293ae6688b518248f28ca6c..1bae7e79884b57fdd3169fc144ff1bd438f1aa03 100644
--- a/chrome/browser/views/location_bar_view.h
+++ b/chrome/browser/views/location_bar_view.h
@@ -30,7 +30,7 @@
class BubblePositioner;
class CommandUpdater;
-class ExtensionAction2;
+class ExtensionAction;
class GURL;
class Profile;
@@ -349,11 +349,11 @@ class LocationBarView : public LocationBar,
public:
PageActionImageView(LocationBarView* owner,
Profile* profile,
- ExtensionAction2* page_action,
+ ExtensionAction* page_action,
const BubblePositioner* bubble_positioner);
virtual ~PageActionImageView();
- ExtensionAction2* page_action() { return page_action_; }
+ ExtensionAction* page_action() { return page_action_; }
int current_tab_id() { return current_tab_id_; }
@@ -380,7 +380,7 @@ class LocationBarView : public LocationBar,
// The PageAction that this view represents. The PageAction is not owned by
// us, it resides in the extension of this particular profile.
- ExtensionAction2* page_action_;
+ ExtensionAction* page_action_;
// A cache of bitmaps the page actions might need to show, mapped by path.
typedef std::map<std::string, SkBitmap> PageActionMap;
« no previous file with comments | « chrome/browser/views/browser_actions_container.cc ('k') | chrome/browser/views/location_bar_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698