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 CONTENT_BROWSER_PLUGIN_FILTER_H_ | 5 #ifndef CONTENT_BROWSER_PLUGIN_FILTER_H_ |
6 #define CONTENT_BROWSER_PLUGIN_FILTER_H_ | 6 #define CONTENT_BROWSER_PLUGIN_FILTER_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 class GURL; | 9 #include "googleurl/src/gurl.h" |
10 | 10 |
11 namespace webkit { | 11 namespace webkit { |
12 struct WebPluginInfo; | 12 struct WebPluginInfo; |
13 } | 13 } |
14 | 14 |
15 namespace content { | 15 namespace content { |
16 | 16 |
17 class ResourceContext; | 17 class ResourceContext; |
18 | 18 |
| 19 // base::Bind() has limited arity, and the filter-related methods tend to |
| 20 // surpass that limit. |
| 21 struct PluginServiceFilterParams { |
| 22 int render_process_id; |
| 23 int render_view_id; |
| 24 GURL page_url; |
| 25 const ResourceContext* resource_context; |
| 26 }; |
| 27 |
19 // Callback class to let the client filter the list of all installed plug-ins. | 28 // Callback class to let the client filter the list of all installed plug-ins. |
20 // This class is called on the FILE thread. | 29 // This class is called on the FILE thread. |
21 class PluginServiceFilter { | 30 class PluginServiceFilter { |
22 public: | 31 public: |
23 virtual ~PluginServiceFilter() {} | 32 virtual ~PluginServiceFilter() {} |
| 33 |
24 // Whether to use |plugin|. The client can return false to disallow the | 34 // Whether to use |plugin|. The client can return false to disallow the |
25 // plugin, or return true and optionally change the passed in plugin. | 35 // plugin, or return true and optionally change the passed in plugin. |
26 virtual bool ShouldUsePlugin( | 36 virtual bool ShouldUsePlugin( |
27 int render_process_id, | 37 int render_process_id, |
28 int render_view_id, | 38 int render_view_id, |
29 const void* context, | 39 const void* context, |
30 const GURL& url, | 40 const GURL& url, |
31 const GURL& policy_url, | 41 const GURL& policy_url, |
32 webkit::WebPluginInfo* plugin) = 0; | 42 webkit::WebPluginInfo* plugin) = 0; |
33 }; | 43 }; |
34 | 44 |
35 } // namespace content | 45 } // namespace content |
36 | 46 |
37 #endif // CONTENT_BROWSER_PLUGIN_FILTER_H_ | 47 #endif // CONTENT_BROWSER_PLUGIN_FILTER_H_ |
OLD | NEW |