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

Unified Diff: chrome/browser/extensions/extensions_service.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/extensions_service.cc
===================================================================
--- chrome/browser/extensions/extensions_service.cc (revision 27027)
+++ chrome/browser/extensions/extensions_service.cc (working copy)
@@ -144,20 +144,12 @@
GarbageCollectExtensions();
}
-std::vector<PageAction*> ExtensionsService::GetPageActions() const {
- std::vector<PageAction*> result;
+std::vector<ContextualAction*> ExtensionsService::GetPageActions() const {
+ return GetContextualActions(ContextualAction::PAGE_ACTION);
+}
- // TODO(finnur): Sort the page icons in some meaningful way.
- for (ExtensionList::const_iterator iter = extensions_.begin();
- iter != extensions_.end(); ++iter) {
- const PageActionMap& page_actions = (*iter)->page_actions();
- for (PageActionMap::const_iterator i(page_actions.begin());
- i != page_actions.end(); ++i) {
- result.push_back(i->second);
- }
- }
-
- return result;
+std::vector<ContextualAction*> ExtensionsService::GetBrowserActions() const {
+ return GetContextualActions(ContextualAction::BROWSER_ACTION);
}
void ExtensionsService::InstallExtension(const FilePath& extension_path) {
@@ -332,6 +324,29 @@
}
}
+std::vector<ContextualAction*> ExtensionsService::GetContextualActions(
+ ContextualAction::ContextualActionType action_type) const {
+ std::vector<ContextualAction*> result;
+
+ // TODO(finnur): Sort the icons in some meaningful way.
+ for (ExtensionList::const_iterator iter = extensions_.begin();
+ iter != extensions_.end(); ++iter) {
+ if (action_type == ContextualAction::PAGE_ACTION) {
+ const ContextualActionMap* page_actions = &(*iter)->page_actions();
+ for (ContextualActionMap::const_iterator i(page_actions->begin());
+ i != page_actions->end(); ++i) {
+ result.push_back(i->second);
+ }
+ } else {
+ ContextualAction* browser_action = (*iter)->browser_action();
+ if (browser_action)
+ result.push_back(browser_action);
+ }
+ }
+
+ return result;
+}
+
void ExtensionsService::UpdateExtensionBlacklist(
const std::vector<std::string>& blacklist) {
// Use this set to indicate if an extension in the blacklist has been used.

Powered by Google App Engine
This is Rietveld 408576698