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

Side by Side Diff: chrome/browser/plugin_prefs.h

Issue 8566028: Cleanup: Remove more forward declarations in various chrome/browser directories. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 9 years, 1 month 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 | Annotate | Revision Log
« no previous file with comments | « chrome/browser/plugin_observer.h ('k') | chrome/browser/profiles/profile.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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_PLUGIN_PREFS_H_ 5 #ifndef CHROME_BROWSER_PLUGIN_PREFS_H_
6 #define CHROME_BROWSER_PLUGIN_PREFS_H_ 6 #define CHROME_BROWSER_PLUGIN_PREFS_H_
7 #pragma once 7 #pragma once
8 8
9 #include <map> 9 #include <map>
10 #include <set> 10 #include <set>
11 #include <vector> 11 #include <vector>
12 12
13 #include "base/basictypes.h" 13 #include "base/basictypes.h"
14 #include "base/file_path.h" 14 #include "base/file_path.h"
15 #include "base/memory/ref_counted.h" 15 #include "base/memory/ref_counted.h"
16 #include "base/synchronization/lock.h" 16 #include "base/synchronization/lock.h"
17 #include "chrome/browser/prefs/pref_change_registrar.h" 17 #include "chrome/browser/prefs/pref_change_registrar.h"
18 #include "content/public/browser/notification_observer.h" 18 #include "content/public/browser/notification_observer.h"
19 19
20 class Profile; 20 class Profile;
21 21
22 namespace content {
23 class ResourceContext;
24 }
25
26 namespace base { 22 namespace base {
27 class DictionaryValue;
28 class ListValue; 23 class ListValue;
29 } 24 }
30 25
31 namespace webkit { 26 namespace webkit {
32 struct WebPluginInfo; 27 struct WebPluginInfo;
33 namespace npapi { 28 namespace npapi {
34 class PluginGroup; 29 class PluginGroup;
35 class PluginList; 30 class PluginList;
36 } 31 }
37 } 32 }
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
163 // PluginList to use for testing. If this is NULL, defaults to the global 158 // PluginList to use for testing. If this is NULL, defaults to the global
164 // singleton. 159 // singleton.
165 webkit::npapi::PluginList* plugin_list_; 160 webkit::npapi::PluginList* plugin_list_;
166 161
167 PrefChangeRegistrar registrar_; 162 PrefChangeRegistrar registrar_;
168 163
169 DISALLOW_COPY_AND_ASSIGN(PluginPrefs); 164 DISALLOW_COPY_AND_ASSIGN(PluginPrefs);
170 }; 165 };
171 166
172 #endif // CHROME_BROWSER_PLUGIN_PREFS_H_ 167 #endif // CHROME_BROWSER_PLUGIN_PREFS_H_
OLDNEW
« no previous file with comments | « chrome/browser/plugin_observer.h ('k') | chrome/browser/profiles/profile.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698