| Index: content/shell/shell_main_delegate.cc
|
| diff --git a/content/shell/shell_main_delegate.cc b/content/shell/shell_main_delegate.cc
|
| index 5e81a42c3216273b6ab107eb7bf17c94f49e6571..3e870335c7a4c9ffffee1031cf54cfa15b3731f3 100644
|
| --- a/content/shell/shell_main_delegate.cc
|
| +++ b/content/shell/shell_main_delegate.cc
|
| @@ -65,7 +65,7 @@ const GUID kContentShellProviderName = {
|
| #endif
|
|
|
| void InitLogging() {
|
| - FilePath log_filename;
|
| + base::FilePath log_filename;
|
| PathService::Get(base::DIR_EXE, &log_filename);
|
| log_filename = log_filename.AppendASCII("content_shell.log");
|
| logging::InitLogging(
|
| @@ -158,11 +158,11 @@ void ShellMainDelegate::InitializeResourceBundle() {
|
| }
|
| #endif
|
|
|
| - FilePath pak_file;
|
| + base::FilePath pak_file;
|
| #if defined(OS_MACOSX)
|
| pak_file = GetResourcesPakFilePath();
|
| #else
|
| - FilePath pak_dir;
|
| + base::FilePath pak_dir;
|
|
|
| #if defined(OS_ANDROID)
|
| bool got_path = PathService::Get(base::DIR_ANDROID_APP_DATA, &pak_dir);
|
|
|