OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_BROWSER_EXTENSIONS_TEST_EXTENSION_PREFS_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_TEST_EXTENSION_PREFS_H_ |
6 #define CHROME_BROWSER_EXTENSIONS_TEST_EXTENSION_PREFS_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_TEST_EXTENSION_PREFS_H_ |
7 #pragma once | |
8 | 7 |
9 #include <string> | 8 #include <string> |
10 | 9 |
11 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
12 #include "base/scoped_temp_dir.h" | 11 #include "base/scoped_temp_dir.h" |
13 #include "chrome/common/extensions/extension.h" | 12 #include "chrome/common/extensions/extension.h" |
14 | 13 |
15 class ExtensionPrefValueMap; | 14 class ExtensionPrefValueMap; |
16 class PrefService; | 15 class PrefService; |
17 | 16 |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
79 scoped_ptr<ExtensionPrefValueMap> extension_pref_value_map_; | 78 scoped_ptr<ExtensionPrefValueMap> extension_pref_value_map_; |
80 | 79 |
81 private: | 80 private: |
82 bool extensions_disabled_; | 81 bool extensions_disabled_; |
83 DISALLOW_COPY_AND_ASSIGN(TestExtensionPrefs); | 82 DISALLOW_COPY_AND_ASSIGN(TestExtensionPrefs); |
84 }; | 83 }; |
85 | 84 |
86 } // namespace extensions | 85 } // namespace extensions |
87 | 86 |
88 #endif // CHROME_BROWSER_EXTENSIONS_TEST_EXTENSION_PREFS_H_ | 87 #endif // CHROME_BROWSER_EXTENSIONS_TEST_EXTENSION_PREFS_H_ |
OLD | NEW |