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

Unified Diff: chrome/browser/extensions/extension_file_util.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_file_util.cc
===================================================================
--- chrome/browser/extensions/extension_file_util.cc (revision 27027)
+++ chrome/browser/extensions/extension_file_util.cc (working copy)
@@ -212,10 +212,10 @@
}
// Validate icon location for page actions.
- const PageActionMap& page_actions = extension->page_actions();
- for (PageActionMap::const_iterator i(page_actions.begin());
+ const ContextualActionMap& page_actions = extension->page_actions();
+ for (ContextualActionMap::const_iterator i(page_actions.begin());
i != page_actions.end(); ++i) {
- PageAction* page_action = i->second;
+ ContextualAction* page_action = i->second;
const std::vector<std::string>& icon_paths = page_action->icon_paths();
for (std::vector<std::string>::const_iterator iter = icon_paths.begin();
iter != icon_paths.end(); ++iter) {
@@ -227,6 +227,20 @@
}
}
+ // Validate icon location for browser actions.
+ const ContextualAction* browser_action = extension->browser_action();
+ if (browser_action) {
+ const std::vector<std::string>& icon_paths = browser_action->icon_paths();
+ for (std::vector<std::string>::const_iterator iter = icon_paths.begin();
+ iter != icon_paths.end(); ++iter) {
+ if (!file_util::PathExists(extension->GetResourcePath(*iter))) {
+ *error = StringPrintf("Could not load icon '%s' for browser action.",
+ iter->c_str());
+ return false;
+ }
+ }
+ }
+
// Check children of extension root to see if any of them start with _ and is
// not on the reserved list.
if (!CheckForIllegalFilenames(extension->path(), error)) {

Powered by Google App Engine
This is Rietveld 408576698