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

Unified Diff: chrome/browser/tab_contents/tab_contents.h

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/tab_contents/tab_contents.h
===================================================================
--- chrome/browser/tab_contents/tab_contents.h (revision 27027)
+++ chrome/browser/tab_contents/tab_contents.h (working copy)
@@ -254,14 +254,15 @@
// this tab. The parameter |title| (if not empty) can be used to override the
// page action title for this tab and |icon_id| specifies an icon index
// (defined in the manifest) to use instead of the first icon (for this tab).
- void SetPageActionEnabled(const PageAction* page_action, bool enable,
+ void SetPageActionEnabled(const ContextualAction* page_action, bool enable,
const std::string& title, int icon_id);
// Returns the page action state for this tab. The pair returns contains
// the title (string) for the page action and the icon index to use (int).
// If this function returns NULL it means the page action is not enabled for
// this tab.
- const PageActionState* GetPageActionState(const PageAction* page_action);
+ const ContextualActionState* GetPageActionState(
+ const ContextualAction* page_action);
// Whether the tab is in the process of being destroyed.
// Added as a tentative work-around for focus related bug #4633. This allows
@@ -1092,7 +1093,7 @@
// that can be used to override the title and icon used for the page action).
// This map is cleared every time the mainframe navigates and populated by the
// PageAction extension API.
- std::map< const PageAction*, linked_ptr<PageActionState> >
+ std::map< const ContextualAction*, linked_ptr<ContextualActionState> >
enabled_page_actions_;
// Data for misc internal state ----------------------------------------------

Powered by Google App Engine
This is Rietveld 408576698