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

Unified Diff: chrome/browser/chromeos/extensions/external_cache.cc

Issue 271263002: New test cases for kiosk app crx file cache. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Nit: remove a unused variable. Created 6 years, 7 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/chromeos/extensions/external_cache.cc
diff --git a/chrome/browser/chromeos/extensions/external_cache.cc b/chrome/browser/chromeos/extensions/external_cache.cc
index fc7774aedd04df8fe156390a3d96a482ed7bb65e..1f8fcaab99dee624ff3868c1c849fb6a59d642f9 100644
--- a/chrome/browser/chromeos/extensions/external_cache.cc
+++ b/chrome/browser/chromeos/extensions/external_cache.cc
@@ -120,6 +120,12 @@ void ExternalCache::RemoveExtensions(const std::vector<std::string>& ids) {
UpdateExtensionLoader();
}
+bool ExternalCache::GetExtension(const std::string& id,
+ base::FilePath* file_path,
+ std::string* version) {
+ return local_cache_.GetExtension(id, file_path, version);
+}
+
void ExternalCache::Observe(int type,
const content::NotificationSource& source,
const content::NotificationDetails& details) {

Powered by Google App Engine
This is Rietveld 408576698