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

Unified Diff: chrome/browser/extensions/extension_settings_test_util.h

Issue 8375047: Separate the syncing of extension settings and app settings into separate data (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 9 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/extension_settings_test_util.h
diff --git a/chrome/browser/extensions/extension_settings_test_util.h b/chrome/browser/extensions/extension_settings_test_util.h
new file mode 100644
index 0000000000000000000000000000000000000000..a7bc9d0fa230f4ccf4b65d2dfb51c93eede5e79c
--- /dev/null
+++ b/chrome/browser/extensions/extension_settings_test_util.h
@@ -0,0 +1,66 @@
+// Copyright (c) 2011 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.
+
+#ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_SETTINGS_TEST_UTIL_H_
+#define CHROME_BROWSER_EXTENSIONS_EXTENSION_SETTINGS_TEST_UTIL_H_
+#pragma once
+
+#include <string>
+
+#include "base/memory/scoped_ptr.h"
+#include "base/memory/ref_counted.h"
+#include "chrome/browser/extensions/extension_event_router.h"
+#include "chrome/browser/extensions/extension_service.h"
+#include "chrome/browser/extensions/test_extension_service.h"
+#include "chrome/common/extensions/extension.h"
+#include "chrome/test/base/testing_profile.h"
+
+class ExtensionSettingsFrontend;
+
+// Utilities for extension settings API tests.
+namespace extension_settings_test_util {
+
+// Synchronously gets the storage area for an extension from |frontend|.
+ExtensionSettingsStorage* GetStorage(
+ const std::string& extension_id, ExtensionSettingsFrontend* frontend);
+
+// An ExtensionService which allows extensions to be hand-added to be returned
+// by GetExtensionById.
+class MockExtensionService : public TestExtensionService {
+ public:
+ MockExtensionService();
+ virtual ~MockExtensionService();
+
+ // Adds an extension with id |id| to be returned by GetExtensionById.
+ void AddExtension(const std::string& id, Extension::Type type);
+
+ virtual const Extension* GetExtensionById(
+ const std::string& id, bool include_disabled) const OVERRIDE;
+
+ private:
+ std::map<std::string, scoped_refptr<Extension> > extensions_;
+};
+
+// A Profile which returns ExtensionService and ExtensionEventRouters with
+// enough functionality for the tests.
+class MockProfile : public TestingProfile {
+ public:
+ explicit MockProfile(const FilePath& file_path);
+ virtual ~MockProfile();
+
+ // Returns the same object as GetExtensionService, but not coaxed into an
+ // ExtensionService; use this method from tests.
+ MockExtensionService* GetMockExtensionService();
+
+ virtual ExtensionService* GetExtensionService() OVERRIDE;
+ virtual ExtensionEventRouter* GetExtensionEventRouter() OVERRIDE;
+
+ private:
+ MockExtensionService extension_service_;
+ scoped_ptr<ExtensionEventRouter> event_router_;
+};
+
+} // namespace extension_settings_test_util
+
+#endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_SETTINGS_TEST_UTIL_H_

Powered by Google App Engine
This is Rietveld 408576698