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

Unified Diff: chrome/browser/extensions/extension_page_actions_module.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/extensions/extension_page_actions_module.cc
===================================================================
--- chrome/browser/extensions/extension_page_actions_module.cc (revision 27027)
+++ chrome/browser/extensions/extension_page_actions_module.cc (working copy)
@@ -70,7 +70,9 @@
return false;
}
- const PageAction* page_action = extension->GetPageAction(page_action_id);
+ const ContextualAction* page_action =
+ extension->GetContextualAction(page_action_id,
+ ContextualAction::PAGE_ACTION);
if (!page_action) {
error_ = ExtensionErrorUtils::FormatErrorMessage(keys::kNoPageActionError,
page_action_id);

Powered by Google App Engine
This is Rietveld 408576698