| 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 // This class responds to requests from renderers for the list of plugins, and | 5 // This class responds to requests from renderers for the list of plugins, and |
| 6 // also a proxy object for plugin instances. | 6 // also a proxy object for plugin instances. |
| 7 | 7 |
| 8 #ifndef CONTENT_BROWSER_PLUGIN_SERVICE_IMPL_H_ | 8 #ifndef CONTENT_BROWSER_PLUGIN_SERVICE_IMPL_H_ |
| 9 #define CONTENT_BROWSER_PLUGIN_SERVICE_IMPL_H_ | 9 #define CONTENT_BROWSER_PLUGIN_SERVICE_IMPL_H_ |
| 10 | 10 |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 void RegisterInternalPlugin(const WebPluginInfo& info, | 104 void RegisterInternalPlugin(const WebPluginInfo& info, |
| 105 bool add_at_beginning) override; | 105 bool add_at_beginning) override; |
| 106 void UnregisterInternalPlugin(const base::FilePath& path) override; | 106 void UnregisterInternalPlugin(const base::FilePath& path) override; |
| 107 void GetInternalPlugins(std::vector<WebPluginInfo>* plugins) override; | 107 void GetInternalPlugins(std::vector<WebPluginInfo>* plugins) override; |
| 108 bool NPAPIPluginsSupported() override; | 108 bool NPAPIPluginsSupported() override; |
| 109 void EnableNpapiPlugins() override; | 109 void EnableNpapiPlugins() override; |
| 110 void DisablePluginsDiscoveryForTesting() override; | 110 void DisablePluginsDiscoveryForTesting() override; |
| 111 #if defined(OS_MACOSX) | 111 #if defined(OS_MACOSX) |
| 112 void AppActivated() override; | 112 void AppActivated() override; |
| 113 #elif defined(OS_WIN) | 113 #elif defined(OS_WIN) |
| 114 virtual bool GetPluginInfoFromWindow(HWND window, | 114 bool GetPluginInfoFromWindow(HWND window, |
| 115 base::string16* plugin_name, | 115 base::string16* plugin_name, |
| 116 base::string16* plugin_version) override; | 116 base::string16* plugin_version) override; |
| 117 | 117 |
| 118 // Returns true iff the given HWND is a plugin. | 118 // Returns true iff the given HWND is a plugin. |
| 119 bool IsPluginWindow(HWND window); | 119 bool IsPluginWindow(HWND window); |
| 120 #endif | 120 #endif |
| 121 bool PpapiDevChannelSupported(BrowserContext* browser_context, | 121 bool PpapiDevChannelSupported(BrowserContext* browser_context, |
| 122 const GURL& document_url) override; | 122 const GURL& document_url) override; |
| 123 | 123 |
| 124 // Returns the plugin process host corresponding to the plugin process that | 124 // Returns the plugin process host corresponding to the plugin process that |
| 125 // has been started by this service. This will start a process to host the | 125 // has been started by this service. This will start a process to host the |
| 126 // 'plugin_path' if needed. If the process fails to start, the return value | 126 // 'plugin_path' if needed. If the process fails to start, the return value |
| (...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 249 | 249 |
| 250 // Used to detect if a given plugin is crashing over and over. | 250 // Used to detect if a given plugin is crashing over and over. |
| 251 std::map<base::FilePath, std::vector<base::Time> > crash_times_; | 251 std::map<base::FilePath, std::vector<base::Time> > crash_times_; |
| 252 | 252 |
| 253 DISALLOW_COPY_AND_ASSIGN(PluginServiceImpl); | 253 DISALLOW_COPY_AND_ASSIGN(PluginServiceImpl); |
| 254 }; | 254 }; |
| 255 | 255 |
| 256 } // namespace content | 256 } // namespace content |
| 257 | 257 |
| 258 #endif // CONTENT_BROWSER_PLUGIN_SERVICE_IMPL_H_ | 258 #endif // CONTENT_BROWSER_PLUGIN_SERVICE_IMPL_H_ |
| OLD | NEW |