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

Unified Diff: webkit/glue/plugins/plugin_list_mac.mm

Issue 199061: Update the Mac plugin whitelist to accomodate a new name for... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/plugins/plugin_list_mac.mm
===================================================================
--- webkit/glue/plugins/plugin_list_mac.mm (revision 25731)
+++ webkit/glue/plugins/plugin_list_mac.mm (working copy)
@@ -79,11 +79,13 @@
// For now, only load plugins that we know are working reasonably well.
// Anything using QuickDraw-based drawing, for example, would crash
// immediately.
+
std::string plugin_name = WideToUTF8(info.name);
if (!(plugin_name == "WebKit Test PlugIn" ||
plugin_name == "Shockwave Flash" ||
plugin_name == "Picasa" ||
- plugin_name == "Google Talk Browser Plugin")) {
+ plugin_name == "Google Talk Browser Plugin" ||
+ plugin_name == "Google Talk NPAPI Plugin")) {
return false;
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698