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

Unified Diff: base/files/file_path.cc

Issue 1139883004: Testing: Fixed printing FilePaths when a test fails comparing them. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@bauerb-profiles-ephemeral
Patch Set: Remove unnecessary qualifier. Created 5 years, 7 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: base/files/file_path.cc
diff --git a/base/files/file_path.cc b/base/files/file_path.cc
index 33d5ca1b8847f5726f74e10c39366f232de5ab4e..e3e84139c626730e6298ac1fa6eab06cffd7843f 100644
--- a/base/files/file_path.cc
+++ b/base/files/file_path.cc
@@ -1317,8 +1317,8 @@ bool FilePath::IsContentUri() const {
}
#endif
-} // namespace base
-
-void PrintTo(const base::FilePath& path, std::ostream* out) {
+void PrintTo(const FilePath& path, std::ostream* out) {
*out << path.value();
}
+
+} // namespace base

Powered by Google App Engine
This is Rietveld 408576698