Mac: Fix compile errors due to Chromium update.

git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@1112 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
Marshall Greenblatt 2013-02-27 18:34:27 +00:00
parent c10f203620
commit 8986d281e3
1 changed files with 2 additions and 2 deletions

View File

@ -84,9 +84,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,