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

Unified Diff: chrome/browser/prefs/per_tab_user_pref_store.h

Issue 8568019: Introduce per-tab preferences service. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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/prefs/per_tab_user_pref_store.h
diff --git a/chrome/browser/prefs/per_tab_user_pref_store.h b/chrome/browser/prefs/per_tab_user_pref_store.h
new file mode 100644
index 0000000000000000000000000000000000000000..ff6e92cfff1284505edc23e48ad45d24ea299cdf
--- /dev/null
+++ b/chrome/browser/prefs/per_tab_user_pref_store.h
@@ -0,0 +1,22 @@
+// 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_PREFS_PER_TAB_USER_PREF_STORE_H_
+#define CHROME_BROWSER_PREFS_PER_TAB_USER_PREF_STORE_H_
+#pragma once
+
+#include <string>
Mattias Nissler (ping if slow) 2011/11/16 12:08:04 not needed
mnaganov (inactive) 2011/11/17 16:50:58 Done.
+
+#include "chrome/browser/prefs/overlay_user_pref_store.h"
+
+class PerTabUserPrefStore : public OverlayUserPrefStore {
+ public:
+ explicit PerTabUserPrefStore(PersistentPrefStore* underlay);
+
+ private:
+
Mattias Nissler (ping if slow) 2011/11/16 12:08:04 remove newline
mnaganov (inactive) 2011/11/17 16:50:58 Done.
+ DISALLOW_COPY_AND_ASSIGN(PerTabUserPrefStore);
Mattias Nissler (ping if slow) 2011/11/16 12:08:04 #include "base/basictypes.h"
mnaganov (inactive) 2011/11/17 16:50:58 Done.
+};
+
+#endif // CHROME_BROWSER_PREFS_PER_TAB_USER_PREF_STORE_H_
« no previous file with comments | « no previous file | chrome/browser/prefs/per_tab_user_pref_store.cc » ('j') | chrome/browser/prefs/per_tab_user_pref_store.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698