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

Unified Diff: content/browser/gpu/gpu_pixel_browsertest.cc

Issue 13196006: Move path functions from file_util to FilePath object. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: git try Created 7 years, 8 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
Index: content/browser/gpu/gpu_pixel_browsertest.cc
diff --git a/content/browser/gpu/gpu_pixel_browsertest.cc b/content/browser/gpu/gpu_pixel_browsertest.cc
index 758d2b4efd2d90f080ad0216b85b3003af127ff2..fb930761c8bd24600f275d9c7ea5522d43822366 100644
--- a/content/browser/gpu/gpu_pixel_browsertest.cc
+++ b/content/browser/gpu/gpu_pixel_browsertest.cc
@@ -54,8 +54,8 @@ const char kBuildRevision[] = "build-revision";
// should have been encoded using |gfx::PNGCodec::Encode|.
bool ReadPNGFile(const base::FilePath& file_path, SkBitmap* bitmap) {
DCHECK(bitmap);
- base::FilePath abs_path(file_path);
- if (!file_util::AbsolutePath(&abs_path))
+ base::FilePath abs_path(base::MakeAbsoluteFilePath(file_path));
+ if (abs_path.empty())
return false;
std::string png_data;

Powered by Google App Engine
This is Rietveld 408576698