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

Unified Diff: net/spdy/spdy_test_utils.h

Issue 1458163002: Remove |using base::StringPiece| from net/spdy header files. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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 | « net/spdy/spdy_session.h ('k') | net/tools/flip_server/spdy_interface.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/spdy/spdy_test_utils.h
diff --git a/net/spdy/spdy_test_utils.h b/net/spdy/spdy_test_utils.h
index a9ff5f38784775e7bbbf9ef2c33d1742efea8955..fee91f68dd7412d97baf97fac6bbf133643f84a2 100644
--- a/net/spdy/spdy_test_utils.h
+++ b/net/spdy/spdy_test_utils.h
@@ -17,9 +17,9 @@ namespace net {
class HashValue;
class TransportSecurityState;
-inline bool operator==(StringPiece x,
+inline bool operator==(base::StringPiece x,
const SpdyHeaderBlock::StringPieceProxy& y) {
- return x == y.operator StringPiece();
+ return x == y.operator base::StringPiece();
}
namespace test {
« no previous file with comments | « net/spdy/spdy_session.h ('k') | net/tools/flip_server/spdy_interface.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698