| 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 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/files/scoped_temp_dir.h" | 10 #include "base/files/scoped_temp_dir.h" |
| 11 #include "base/memory/ref_counted.h" | 11 #include "base/memory/ref_counted.h" |
| 12 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
| 13 #include "chrome/common/extensions/manifest.h" | 13 #include "extensions/common/manifest.h" |
| 14 | 14 |
| 15 class ExtensionPrefValueMap; | 15 class ExtensionPrefValueMap; |
| 16 class PrefService; | 16 class PrefService; |
| 17 class PrefServiceSyncable; | 17 class PrefServiceSyncable; |
| 18 | 18 |
| 19 namespace base { | 19 namespace base { |
| 20 class DictionaryValue; | 20 class DictionaryValue; |
| 21 class SequencedTaskRunner; | 21 class SequencedTaskRunner; |
| 22 } | 22 } |
| 23 | 23 |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 const scoped_refptr<base::SequencedTaskRunner> task_runner_; | 94 const scoped_refptr<base::SequencedTaskRunner> task_runner_; |
| 95 | 95 |
| 96 private: | 96 private: |
| 97 bool extensions_disabled_; | 97 bool extensions_disabled_; |
| 98 DISALLOW_COPY_AND_ASSIGN(TestExtensionPrefs); | 98 DISALLOW_COPY_AND_ASSIGN(TestExtensionPrefs); |
| 99 }; | 99 }; |
| 100 | 100 |
| 101 } // namespace extensions | 101 } // namespace extensions |
| 102 | 102 |
| 103 #endif // CHROME_BROWSER_EXTENSIONS_TEST_EXTENSION_PREFS_H_ | 103 #endif // CHROME_BROWSER_EXTENSIONS_TEST_EXTENSION_PREFS_H_ |
| OLD | NEW |