Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(130)

Side by Side Diff: content/browser/plugin_service_impl.h

Issue 1091093006: Update {virtual,override} to follow C++11 style in content. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Back out some webrtc files. Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « content/browser/plugin_process_host.cc ('k') | content/browser/plugin_service_impl_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698