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

Unified Diff: chrome/browser/extensions/settings/settings_leveldb_storage.h

Issue 8670012: Extension Settings API: move the API functions into an object SettingsNamepace, (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix bug / sync Created 9 years, 1 month 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/settings/settings_leveldb_storage.h
diff --git a/chrome/browser/extensions/settings/settings_leveldb_storage.h b/chrome/browser/extensions/settings/settings_leveldb_storage.h
index 96cff0569aea5f34d90f5b212a448e3150f6f944..390bc614d9aa6ca60c95b40782f997f3cd9dd0d3 100644
--- a/chrome/browser/extensions/settings/settings_leveldb_storage.h
+++ b/chrome/browser/extensions/settings/settings_leveldb_storage.h
@@ -29,15 +29,13 @@ class SettingsLeveldbStorage : public SettingsStorage {
// Factory for creating SettingsLeveldbStorage instances.
class Factory : public SettingsStorageFactory {
public:
- Factory() {}
- virtual ~Factory() {}
-
- // SettingsStorageFactory implementation.
virtual SettingsStorage* Create(
- const FilePath& base_path, const std::string& extension_id) OVERRIDE;
+ const FilePath& base_path,
+ const std::string& extension_id) OVERRIDE;
private:
- DISALLOW_COPY_AND_ASSIGN(Factory);
+ // SettingsStorageFactory is refcounted.
+ virtual ~Factory() {}
};
// Must be deleted on the FILE thread.

Powered by Google App Engine
This is Rietveld 408576698