| 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 <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
| 12 #include "base/memory/weak_ptr.h" | 12 #include "base/memory/weak_ptr.h" |
| 13 #include "base/prefs/pref_member.h" | 13 #include "base/prefs/pref_member.h" |
| 14 #include "base/task/sequenced_task_runner_helpers.h" | 14 #include "base/sequenced_task_runner_helpers.h" |
| 15 #include "chrome/common/content_settings.h" | 15 #include "chrome/common/content_settings.h" |
| 16 #include "content/public/browser/browser_message_filter.h" | 16 #include "content/public/browser/browser_message_filter.h" |
| 17 | 17 |
| 18 struct ChromeViewHostMsg_GetPluginInfo_Output; | 18 struct ChromeViewHostMsg_GetPluginInfo_Output; |
| 19 struct ChromeViewHostMsg_GetPluginInfo_Status; | 19 struct ChromeViewHostMsg_GetPluginInfo_Status; |
| 20 class GURL; | 20 class GURL; |
| 21 class HostContentSettingsMap; | 21 class HostContentSettingsMap; |
| 22 class PluginFinder; | 22 class PluginFinder; |
| 23 class PluginMetadata; | 23 class PluginMetadata; |
| 24 class Profile; | 24 class Profile; |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 const std::vector<webkit::WebPluginInfo>& plugins); | 102 const std::vector<webkit::WebPluginInfo>& plugins); |
| 103 | 103 |
| 104 Context context_; | 104 Context context_; |
| 105 | 105 |
| 106 base::WeakPtrFactory<PluginInfoMessageFilter> weak_ptr_factory_; | 106 base::WeakPtrFactory<PluginInfoMessageFilter> weak_ptr_factory_; |
| 107 | 107 |
| 108 DISALLOW_COPY_AND_ASSIGN(PluginInfoMessageFilter); | 108 DISALLOW_COPY_AND_ASSIGN(PluginInfoMessageFilter); |
| 109 }; | 109 }; |
| 110 | 110 |
| 111 #endif // CHROME_BROWSER_PLUGINS_PLUGIN_INFO_MESSAGE_FILTER_H_ | 111 #endif // CHROME_BROWSER_PLUGINS_PLUGIN_INFO_MESSAGE_FILTER_H_ |
| OLD | NEW |