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

Unified Diff: webkit/plugins/npapi/plugin_list.cc

Issue 10911338: Initialize |dont_load_new_wmp_| in the default ctor. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 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/plugins/npapi/plugin_list.cc
diff --git a/webkit/plugins/npapi/plugin_list.cc b/webkit/plugins/npapi/plugin_list.cc
index d6a76884b7212f5b723e1d9e63ccb522e65902e2..3fbf9790230a438dc6abe60e9d2129f40e671ebe 100644
--- a/webkit/plugins/npapi/plugin_list.cc
+++ b/webkit/plugins/npapi/plugin_list.cc
@@ -286,7 +286,11 @@ bool PluginList::ParseMimeTypes(
}
PluginList::PluginList()
- : loading_state_(LOADING_STATE_NEEDS_REFRESH) {
+ :
+#if defined(OS_WIN)
+ dont_load_new_wmp_(false),
+#endif
+ loading_state_(LOADING_STATE_NEEDS_REFRESH) {
PlatformInit();
AddHardcodedPluginGroups(kGroupDefinitions,
ARRAYSIZE_UNSAFE(kGroupDefinitions));
« 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