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

Unified Diff: net/spdy/spdy_framer.h

Issue 246123005: SPDY cleanups: remove extraneous 'net::' & obsolete TODO (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Also include cr/64909678 Created 6 years, 8 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 | net/spdy/spdy_framer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/spdy/spdy_framer.h
diff --git a/net/spdy/spdy_framer.h b/net/spdy/spdy_framer.h
index 97e6278da8de188b07826302da3dc02dfcb4882a..73eaf8b671b83fe01d06e816ff8cef6d3fffe2f6 100644
--- a/net/spdy/spdy_framer.h
+++ b/net/spdy/spdy_framer.h
@@ -56,7 +56,7 @@ typedef std::map<std::string, std::string> SpdyHeaderBlock;
// Conveniently handles converstion to/from wire format.
class NET_EXPORT_PRIVATE SettingsFlagsAndId {
public:
- static SettingsFlagsAndId FromWireFormat(net::SpdyMajorVersion version,
+ static SettingsFlagsAndId FromWireFormat(SpdyMajorVersion version,
uint32 wire);
SettingsFlagsAndId() : flags_(0), id_(0) {}
@@ -64,7 +64,7 @@ class NET_EXPORT_PRIVATE SettingsFlagsAndId {
// TODO(hkhalil): restrict to enums instead of free-form ints.
SettingsFlagsAndId(uint8 flags, uint32 id);
- uint32 GetWireFormat(net::SpdyMajorVersion version) const;
+ uint32 GetWireFormat(SpdyMajorVersion version) const;
uint32 id() const { return id_; }
uint8 flags() const { return flags_; }
@@ -321,13 +321,13 @@ class NET_EXPORT_PRIVATE SpdyFramer {
// Serializes a SpdyHeaderBlock.
static void WriteHeaderBlock(SpdyFrameBuilder* frame,
- const net::SpdyMajorVersion spdy_version,
+ const SpdyMajorVersion spdy_version,
const SpdyHeaderBlock* headers);
// Retrieve serialized length of SpdyHeaderBlock.
// TODO(hkhalil): Remove, or move to quic code.
static size_t GetSerializedLength(
- const net::SpdyMajorVersion spdy_version,
+ const SpdyMajorVersion spdy_version,
const SpdyHeaderBlock* headers);
// Create a new Framer, provided a SPDY version.
« no previous file with comments | « no previous file | net/spdy/spdy_framer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698