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

Unified Diff: content/shell/shell_main_delegate.cc

Issue 12208057: Add explicit base to FilePath. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 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 | « content/shell/shell_download_manager_delegate.cc ('k') | content/shell/shell_message_filter.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
« no previous file with comments | « content/shell/shell_download_manager_delegate.cc ('k') | content/shell/shell_message_filter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698