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

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

Issue 5915004: Introduce incognito preference settings. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed whitespaces in mac files Created 9 years, 11 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_pref_store.h
diff --git a/chrome/browser/extensions/extension_pref_store.h b/chrome/browser/extensions/extension_pref_store.h
index f2db8096692e56a7523af315865ee76d8d2d0b5c..80b82e34a45e480d9d7a5da1ccabe38836d1bfd4 100644
--- a/chrome/browser/extensions/extension_pref_store.h
+++ b/chrome/browser/extensions/extension_pref_store.h
@@ -1,4 +1,4 @@
-// Copyright (c) 2010 The Chromium Authors. All rights reserved.
+// 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.
@@ -6,31 +6,33 @@
#define CHROME_BROWSER_EXTENSIONS_EXTENSION_PREF_STORE_H_
#pragma once
+#include <string>
+
+#include "base/time.h"
+#include "chrome/browser/extensions/extension_pref_value_map.h"
#include "chrome/browser/prefs/value_map_pref_store.h"
-// A PrefStore implementation that holds preferences set by extensions.
-class ExtensionPrefStore : public ValueMapPrefStore {
+// A (non-persistent) PrefStore implementation that holds effective preferences
+// set by extensions. These preferences are managed by and fetched from an
+// ExtensionPrefValueMap.
+class ExtensionPrefStore : public ValueMapPrefStore,
+ public ExtensionPrefValueMap::Observer {
public:
- ExtensionPrefStore();
- virtual ~ExtensionPrefStore() {}
-
- // Set an extension preference |value| for |key|. Takes ownership of |value|.
- void SetExtensionPref(const std::string& key, Value* value);
-
- // Remove the extension preference value for |key|.
- void RemoveExtensionPref(const std::string& key);
-
- // Tell the store it's now fully initialized.
- void OnInitializationCompleted();
+ // Constructs an ExtensionPrefStore for a regular or an incognito profile.
+ explicit ExtensionPrefStore(ExtensionPrefValueMap* extension_pref_value_map,
+ bool incognito_pref_store);
+ virtual ~ExtensionPrefStore();
private:
- // PrefStore overrides:
- virtual bool IsInitializationComplete() const;
+ // Overrides for ExtensionPrefValueMap::Observer:
+ virtual void OnInitializationCompleted();
+ virtual void OnPrefValueChanged(const std::string& key);
+ virtual void OnExtensionPrefValueMapDestruction();
- bool initialization_complete_;
+ ExtensionPrefValueMap* extension_pref_value_map_; // Weak pointer.
+ bool incognito_pref_store_;
DISALLOW_COPY_AND_ASSIGN(ExtensionPrefStore);
};
-
#endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_PREF_STORE_H_
« no previous file with comments | « no previous file | chrome/browser/extensions/extension_pref_store.cc » ('j') | chrome/browser/prefs/pref_member.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698