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

Unified Diff: chrome/browser/extensions/updater/extension_cache.cc

Issue 653623002: Revert "Move ExtensionCache to //extensions" (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Enable AutoEnrollmentClientTest.* and DeviceLocalAccountExternalPolicyLoaderTest.CacheNotStarted te… Created 6 years, 2 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/updater/extension_cache.cc
diff --git a/chrome/browser/extensions/updater/extension_cache.cc b/chrome/browser/extensions/updater/extension_cache.cc
new file mode 100644
index 0000000000000000000000000000000000000000..c9111c7897911b6271fdb62e8c37b63ba5f1a286
--- /dev/null
+++ b/chrome/browser/extensions/updater/extension_cache.cc
@@ -0,0 +1,84 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "chrome/browser/extensions/updater/extension_cache.h"
+
+#include "base/memory/singleton.h"
+
+#if defined(OS_CHROMEOS)
+#include "chrome/browser/extensions/updater/extension_cache_impl.h"
+#endif // OS_CHROMEOS
+
+namespace extensions {
+namespace {
+
+#if !defined(OS_CHROMEOS)
+
+// Implementation of ExtensionCache that doesn't cache anything.
+// Real cache is used only on Chrome OS other OSes use this null implementation.
+class ExtensionCacheNullImpl : public ExtensionCache {
+ public:
+ static ExtensionCacheNullImpl* GetInstance() {
+ return Singleton<ExtensionCacheNullImpl>::get();
+ }
+
+ // Implementation of ExtensionCache.
+ virtual void Start(const base::Closure& callback) override {
+ callback.Run();
+ }
+
+ virtual void Shutdown(const base::Closure& callback) override {
+ callback.Run();
+ }
+
+ virtual void AllowCaching(const std::string& id) override {
+ }
+
+ virtual bool GetExtension(const std::string& id,
+ base::FilePath* file_path,
+ std::string* version) override {
+ return false;
+ }
+
+ virtual void PutExtension(const std::string& id,
+ const base::FilePath& file_path,
+ const std::string& version,
+ const PutExtensionCallback& callback) override {
+ callback.Run(file_path, true);
+ }
+
+ private:
+ friend struct DefaultSingletonTraits<ExtensionCacheNullImpl>;
+
+ ExtensionCacheNullImpl() {}
+ virtual ~ExtensionCacheNullImpl() {}
+};
+
+#endif // !OS_CHROMEOS
+
+static ExtensionCache* g_extension_cache_override = NULL;
+
+} // namespace
+
+// static
+ExtensionCache* ExtensionCache::GetInstance() {
+ if (g_extension_cache_override) {
+ return g_extension_cache_override;
+ } else {
+#if defined(OS_CHROMEOS)
+ return ExtensionCacheImpl::GetInstance();
+#else
+ return ExtensionCacheNullImpl::GetInstance();
+#endif
+ }
+}
+
+// static
+ExtensionCache* ExtensionCache::SetForTesting(ExtensionCache* cache) {
+ ExtensionCache* temp = g_extension_cache_override;
+ g_extension_cache_override = cache;
+ return temp;
+}
+
+} // namespace extensions
« no previous file with comments | « chrome/browser/extensions/updater/extension_cache.h ('k') | chrome/browser/extensions/updater/extension_cache_fake.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698