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

Unified Diff: chrome/common/extensions/unpacker.cc

Issue 13473013: Move ThemeHandler from c/c/e/api; move GetBrowserImages() out of Extension class (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Latest master (+blink) Created 7 years, 8 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/common/extensions/unpacker.cc
diff --git a/chrome/common/extensions/unpacker.cc b/chrome/common/extensions/unpacker.cc
index 37b417b75ef22a280f71067c4812af6f8cac3cc7..3491ca050b363b431c924afdffa1b514acd26456 100644
--- a/chrome/common/extensions/unpacker.cc
+++ b/chrome/common/extensions/unpacker.cc
@@ -196,7 +196,8 @@ bool Unpacker::Run() {
extension->AddInstallWarnings(warnings);
// Decode any images that the browser needs to display.
- std::set<base::FilePath> image_paths = extension->GetBrowserImages();
+ std::set<base::FilePath> image_paths =
+ extension_file_util::GetExtensionBrowserImages(extension);
for (std::set<base::FilePath>::iterator it = image_paths.begin();
it != image_paths.end(); ++it) {
if (!AddDecodedImage(*it))

Powered by Google App Engine
This is Rietveld 408576698