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

Unified Diff: chrome/browser/net/url_fixer_upper_unittest.cc

Issue 2857015: Clang/mac: Get unit_tests built. (Closed)
Patch Set: rebase Created 10 years, 4 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: chrome/browser/net/url_fixer_upper_unittest.cc
diff --git a/chrome/browser/net/url_fixer_upper_unittest.cc b/chrome/browser/net/url_fixer_upper_unittest.cc
index 67b5caea728cb55b1ec9b086d3a003fe0cb464d7..973cb109dc542489345887f4da801edc8e6d9183 100644
--- a/chrome/browser/net/url_fixer_upper_unittest.cc
+++ b/chrome/browser/net/url_fixer_upper_unittest.cc
@@ -16,15 +16,17 @@
#include "net/base/net_util.h"
#include "testing/gtest/include/gtest/gtest.h"
+namespace url_parse {
+std::ostream& operator<<(std::ostream& os, const Component& part) {
+ return os << "(begin=" << part.begin << ", len=" << part.len << ")";
+}
+}
+
namespace {
class URLFixerUpperTest : public testing::Test {
};
};
-std::ostream& operator<<(std::ostream& os, const url_parse::Component& part) {
- return os << "(begin=" << part.begin << ", len=" << part.len << ")";
-}
-
struct segment_case {
const std::string input;
const std::string result;
« no previous file with comments | « chrome/browser/importer/importer_unittest.cc ('k') | chrome/browser/password_manager/login_database_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698