Mac: Fix compile errors due to Chromium update.

git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@1114 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
Marshall Greenblatt 2013-02-28 22:33:49 +00:00
parent 095bc4b7f8
commit 497fcc6cdc
1 changed files with 2 additions and 2 deletions

View File

@ -171,9 +171,9 @@ void CefTestSuite::Initialize() {
// RegisterMockCrApp() on Mac.
// Initialize logging.
FilePath exe;
base::FilePath exe;
PathService::Get(base::FILE_EXE, &exe);
FilePath log_filename = exe.ReplaceExtension(FILE_PATH_LITERAL("log"));
base::FilePath log_filename = exe.ReplaceExtension(FILE_PATH_LITERAL("log"));
logging::InitLogging(
log_filename.value().c_str(),
logging::LOG_TO_BOTH_FILE_AND_SYSTEM_DEBUG_LOG,