diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-02-10 04:49:30 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-02-10 04:49:30 +0000 |
commit | 6d4b67a4b50d73d5001aec99014ac40bc504871a (patch) | |
tree | 4f85ee41ed1fad3dc68381e0fe4f23dbeecf1364 /chrome_frame/chrome_frame_reporting.cc | |
parent | 650b2d5cdcab7d2c473c00d15b9f343f3a3405bb (diff) | |
download | chromium_src-6d4b67a4b50d73d5001aec99014ac40bc504871a.zip chromium_src-6d4b67a4b50d73d5001aec99014ac40bc504871a.tar.gz chromium_src-6d4b67a4b50d73d5001aec99014ac40bc504871a.tar.bz2 |
Rename FilePath -> base::FilePath in various toplevel directories
Review URL: https://codereview.chromium.org/12211108
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@181639 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome_frame/chrome_frame_reporting.cc')
-rw-r--r-- | chrome_frame/chrome_frame_reporting.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome_frame/chrome_frame_reporting.cc b/chrome_frame/chrome_frame_reporting.cc index 4c210aa..f9fa490 100644 --- a/chrome_frame/chrome_frame_reporting.cc +++ b/chrome_frame/chrome_frame_reporting.cc @@ -21,8 +21,8 @@ const wchar_t kChromePipeName[] = L"\\\\.\\pipe\\ChromeCrashServices"; google_breakpad::CustomClientInfo* GetCustomInfo(const wchar_t* dll_path) { std::wstring product; std::wstring version; - scoped_ptr<FileVersionInfo> - version_info(FileVersionInfo::CreateFileVersionInfo(FilePath(dll_path))); + scoped_ptr<FileVersionInfo> version_info( + FileVersionInfo::CreateFileVersionInfo(base::FilePath(dll_path))); if (version_info.get()) { version = version_info->product_version(); product = version_info->product_short_name(); @@ -60,7 +60,7 @@ bool InitializeCrashReporting() { ExceptionBarrierConfig::set_enabled(true); // Get the alternate dump directory. We use the temp path. - FilePath temp_directory; + base::FilePath temp_directory; if (!file_util::GetTempDir(&temp_directory) || temp_directory.empty()) { return false; } |