| OLD | NEW |
| 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 Loading... |
| 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_ |
| OLD | NEW |