summaryrefslogtreecommitdiffstats
path: root/content/app/content_main_runner.cc
diff options
context:
space:
mode:
authorbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-02-07 04:16:26 +0000
committerbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-02-07 04:16:26 +0000
commitd30a36f843c58c98a72d845838b9508ca4e61878 (patch)
tree98ceae1fbe1088eead2edccf89d0a79d98b737fb /content/app/content_main_runner.cc
parenta83d4bc9e92d6a76bb2f87dfd2a1bb369c666209 (diff)
downloadchromium_src-d30a36f843c58c98a72d845838b9508ca4e61878.zip
chromium_src-d30a36f843c58c98a72d845838b9508ca4e61878.tar.gz
chromium_src-d30a36f843c58c98a72d845838b9508ca4e61878.tar.bz2
Add explicit base to FilePath.
This changes the "easy" content subdirectories (everything but browser, renderer, and common) and the ppapi top level directory. Review URL: https://codereview.chromium.org/12208057 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@181191 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/app/content_main_runner.cc')
-rw-r--r--content/app/content_main_runner.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/content/app/content_main_runner.cc b/content/app/content_main_runner.cc
index eb0eba3..047a8bb 100644
--- a/content/app/content_main_runner.cc
+++ b/content/app/content_main_runner.cc
@@ -364,7 +364,7 @@ int RunZygote(const MainFunctionParams& main_function_params,
// 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.
- FilePath media_path;
+ base::FilePath media_path;
if (PathService::Get(DIR_MEDIA_LIBS, &media_path))
media::InitializeMediaLibrary(media_path);
}