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

Unified Diff: base/files/file_path.h

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
« no previous file with comments | « no previous file | base/files/file_path.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/files/file_path.h
diff --git a/base/files/file_path.h b/base/files/file_path.h
index 5225b12ffd4c8cab478e5b73c8f6a9823c0c3f9c..e4c70d30fb40829a449ccb00dc354930e206e164 100644
--- a/base/files/file_path.h
+++ b/base/files/file_path.h
@@ -433,10 +433,10 @@ class BASE_EXPORT FilePath {
StringType path_;
};
-} // namespace base
-
// This is required by googletest to print a readable output on test failures.
-BASE_EXPORT extern void PrintTo(const base::FilePath& path, std::ostream* out);
+BASE_EXPORT extern void PrintTo(const FilePath& path, std::ostream* out);
danakj 2015/05/22 20:59:23 While you're here, including std::ostream everywhe
Matt Giuca 2015/05/25 03:40:15 Done (moved to test_support_base), but... On 2015
Matt Giuca 2015/05/25 05:54:01 Sorry, by <iostream> I meant <ostream>.
+
+} // namespace base
// Macros for string literal initialization of FilePath::CharType[], and for
// using a FilePath::CharType[] in a printf-style format string.
« no previous file with comments | « no previous file | base/files/file_path.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698