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

Unified Diff: net/test/python_utils.cc

Issue 266243004: Clang format slam. Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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: net/test/python_utils.cc
diff --git a/net/test/python_utils.cc b/net/test/python_utils.cc
index a67b2c129458896d2779d70eb404b8e17ba32a80..8b820bf44d8ac4588c6e8aa7e1041cc1de1be4ff 100644
--- a/net/test/python_utils.cc
+++ b/net/test/python_utils.cc
@@ -85,17 +85,16 @@ bool GetPyProtoPath(base::FilePath* dir) {
// how far down it goes. So we walk upwards from DIR_EXE until we
// find a likely looking spot.
if (!TryRelativeToDir(generated_code_dir, kPyProto, dir)) {
- LOG(WARNING) << "Can't find " << kPyProto.value()
- << " next to " << generated_code_dir.value();
+ LOG(WARNING) << "Can't find " << kPyProto.value() << " next to "
+ << generated_code_dir.value();
// On Chrome OS, we may have installed the test binaries and support tools
// in a wholly separate location, relative to DIR_SOURCE_ROOT. We'll want
// to do a similar investigation from that point as well.
- generated_code_dir = source_dir
- .Append(FILE_PATH_LITERAL("out"))
- .Append(FILE_PATH_LITERAL("Release"));
+ generated_code_dir = source_dir.Append(FILE_PATH_LITERAL("out"))
+ .Append(FILE_PATH_LITERAL("Release"));
if (!TryRelativeToDir(generated_code_dir, kPyProto, dir)) {
- LOG(WARNING) << "Can't find " << kPyProto.value()
- << " next to " << generated_code_dir.value();
+ LOG(WARNING) << "Can't find " << kPyProto.value() << " next to "
+ << generated_code_dir.value();
return false;
}
}

Powered by Google App Engine
This is Rietveld 408576698