Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(972)

Side by Side Diff: chrome/browser/extensions/extension_prefs.h

Issue 2986002: More header cleanup: (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: mac compile fixes (tested locally) Created 10 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « chrome/browser/extensions/crx_installer.h ('k') | chrome/browser/extensions/extension_updater.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698