Chromium Code Reviews| 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_ |