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

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

Issue 100180: Added audio/mpeg and video/mpeg to the list of mime types supported by the Ac... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 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 side-by-side diff with in-line comments
Download patch
Index: webkit/glue/plugins/plugin_list.cc
===================================================================
--- webkit/glue/plugins/plugin_list.cc (revision 14603)
+++ webkit/glue/plugins/plugin_list.cc (working copy)
@@ -156,8 +156,6 @@
base::TimeTicks start_time = base::TimeTicks::Now();
- LoadInternalPlugins();
-
std::vector<FilePath> directories_to_scan;
GetPluginDirectories(&directories_to_scan);
@@ -175,6 +173,8 @@
if (webkit_glue::IsDefaultPluginEnabled())
LoadPlugin(FilePath(kDefaultPluginLibraryName));
+ LoadInternalPlugins();
+
base::TimeTicks end_time = base::TimeTicks::Now();
base::TimeDelta elapsed = end_time - start_time;
DLOG(INFO) << "Loaded plugin list in " << elapsed.InMilliseconds() << " ms.";

Powered by Google App Engine
This is Rietveld 408576698