OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_EXTENSION_PREFS_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_PREFS_H_ |
6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_PREFS_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_PREFS_H_ |
7 | 7 |
8 #include <set> | 8 #include <set> |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
11 | 11 |
12 #include "base/linked_ptr.h" | 12 #include "base/linked_ptr.h" |
| 13 #include "base/task.h" |
13 #include "base/time.h" | 14 #include "base/time.h" |
14 #include "chrome/browser/pref_service.h" | 15 #include "chrome/browser/pref_service.h" |
15 #include "chrome/common/extensions/extension.h" | 16 #include "chrome/common/extensions/extension.h" |
16 #include "googleurl/src/gurl.h" | 17 #include "googleurl/src/gurl.h" |
17 | 18 |
18 // Class for managing global and per-extension preferences. | 19 // Class for managing global and per-extension preferences. |
19 // This class is instantiated by ExtensionsService, so it should be accessed | 20 // This class is instantiated by ExtensionsService, so it should be accessed |
20 // from there. | 21 // from there. |
21 class ExtensionPrefs { | 22 class ExtensionPrefs { |
22 public: | 23 public: |
(...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
200 // Base extensions install directory. | 201 // Base extensions install directory. |
201 FilePath install_directory_; | 202 FilePath install_directory_; |
202 | 203 |
203 // The URLs of all of the toolstrips. | 204 // The URLs of all of the toolstrips. |
204 URLList shelf_order_; | 205 URLList shelf_order_; |
205 | 206 |
206 DISALLOW_COPY_AND_ASSIGN(ExtensionPrefs); | 207 DISALLOW_COPY_AND_ASSIGN(ExtensionPrefs); |
207 }; | 208 }; |
208 | 209 |
209 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_PREFS_H_ | 210 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_PREFS_H_ |
OLD | NEW |