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