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

Unified Diff: content/app/content_main_runner.cc

Issue 1141703002: Chromium changes for static linking ffmpeg (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Updating media library initialize calls Created 5 years, 7 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 | « components/html_viewer/web_media_player_factory.cc ('k') | content/content_browsertests.isolate » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/app/content_main_runner.cc
diff --git a/content/app/content_main_runner.cc b/content/app/content_main_runner.cc
index 279536b09b983deec9ae5f22856e5c0bbb72f83a..274950068b7776aba58899ac30a32a0572e122ea 100644
--- a/content/app/content_main_runner.cc
+++ b/content/app/content_main_runner.cc
@@ -280,12 +280,7 @@ int RunZygote(const MainFunctionParams& main_function_params,
ScopedVector<ZygoteForkDelegate> zygote_fork_delegates;
if (delegate) {
delegate->ZygoteStarting(&zygote_fork_delegates);
- // Each Renderer we spawn will re-attempt initialization of the media
- // libraries, at which point failure will be detected and handled, so
- // we do not need to cope with initialization failures here.
- base::FilePath media_path;
- if (PathService::Get(DIR_MEDIA_LIBS, &media_path))
DaleCurtis 2015/05/18 23:33:14 You can remove the DIR_MEDIA_LIBS PathService entr
chcunningham 2015/05/21 22:10:27 This seems to still be used here: https://code.goo
- media::InitializeMediaLibrary(media_path);
+ media::InitializeMediaLibrary();
}
// This function call can return multiple times, once per fork().
« no previous file with comments | « components/html_viewer/web_media_player_factory.cc ('k') | content/content_browsertests.isolate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698