| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_PLUGINS_PLUGIN_INFO_MESSAGE_FILTER_H_ | 5 #ifndef CHROME_BROWSER_PLUGINS_PLUGIN_INFO_MESSAGE_FILTER_H_ |
| 6 #define CHROME_BROWSER_PLUGINS_PLUGIN_INFO_MESSAGE_FILTER_H_ | 6 #define CHROME_BROWSER_PLUGINS_PLUGIN_INFO_MESSAGE_FILTER_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "base/compiler_specific.h" | 12 #include "base/compiler_specific.h" |
| 13 #include "base/macros.h" | 13 #include "base/macros.h" |
| 14 #include "base/memory/ref_counted.h" | 14 #include "base/memory/ref_counted.h" |
| 15 #include "base/memory/weak_ptr.h" | 15 #include "base/memory/weak_ptr.h" |
| 16 #include "base/sequenced_task_runner_helpers.h" | 16 #include "base/sequenced_task_runner_helpers.h" |
| 17 #include "chrome/browser/plugins/plugin_prefs.h" | 17 #include "chrome/browser/plugins/plugin_prefs.h" |
| 18 #include "components/content_settings/core/common/content_settings.h" | 18 #include "components/content_settings/core/common/content_settings.h" |
| 19 #include "components/prefs/pref_member.h" | 19 #include "components/prefs/pref_member.h" |
| 20 #include "content/public/browser/browser_message_filter.h" | 20 #include "content/public/browser/browser_message_filter.h" |
| 21 #include "extensions/features/features.h" | 21 #include "extensions/features/features.h" |
| 22 #include "ppapi/features/features.h" | 22 #include "ppapi/features/features.h" |
| 23 | 23 |
| 24 struct ChromeViewHostMsg_GetPluginInfo_Output; | 24 struct ChromeViewHostMsg_GetPluginInfo_Output; |
| 25 enum class ChromeViewHostMsg_GetPluginInfo_Status; | 25 enum class ChromeViewHostMsg_GetPluginInfo_Status; |
| 26 class GURL; | 26 class GURL; |
| 27 class HostContentSettingsMap; | 27 class HostContentSettingsMap; |
| 28 class PluginFinder; | |
| 29 class PluginMetadata; | 28 class PluginMetadata; |
| 30 class Profile; | 29 class Profile; |
| 31 | 30 |
| 32 namespace base { | 31 namespace base { |
| 33 class SingleThreadTaskRunner; | 32 class SingleThreadTaskRunner; |
| 34 } | 33 } |
| 35 | 34 |
| 36 namespace content { | 35 namespace content { |
| 37 class ResourceContext; | 36 class ResourceContext; |
| 38 struct WebPluginInfo; | 37 struct WebPluginInfo; |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 148 | 147 |
| 149 Context context_; | 148 Context context_; |
| 150 | 149 |
| 151 scoped_refptr<base::SingleThreadTaskRunner> main_thread_task_runner_; | 150 scoped_refptr<base::SingleThreadTaskRunner> main_thread_task_runner_; |
| 152 base::WeakPtrFactory<PluginInfoMessageFilter> weak_ptr_factory_; | 151 base::WeakPtrFactory<PluginInfoMessageFilter> weak_ptr_factory_; |
| 153 | 152 |
| 154 DISALLOW_COPY_AND_ASSIGN(PluginInfoMessageFilter); | 153 DISALLOW_COPY_AND_ASSIGN(PluginInfoMessageFilter); |
| 155 }; | 154 }; |
| 156 | 155 |
| 157 #endif // CHROME_BROWSER_PLUGINS_PLUGIN_INFO_MESSAGE_FILTER_H_ | 156 #endif // CHROME_BROWSER_PLUGINS_PLUGIN_INFO_MESSAGE_FILTER_H_ |
| OLD | NEW |