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

Unified Diff: net/spdy/hpack_header_table.h

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/spdy/hpack_header_table.h
diff --git a/net/spdy/hpack_header_table.h b/net/spdy/hpack_header_table.h
index 0e0a01ba2637139ffde6ac45eae9a1aeb92222a3..580eaee4979ce9ce18493387523537234b49da13 100644
--- a/net/spdy/hpack_header_table.h
+++ b/net/spdy/hpack_header_table.h
@@ -48,9 +48,7 @@ class NET_EXPORT_PRIVATE HpackHeaderTable {
size_t size() const { return size_; }
size_t max_size() const { return max_size_; }
- const HpackEntry::OrderedSet& reference_set() {
- return reference_set_;
- }
+ const HpackEntry::OrderedSet& reference_set() { return reference_set_; }
// Returns the entry matching the index, or NULL.
HpackEntry* GetByIndex(size_t index);
@@ -73,7 +71,8 @@ class NET_EXPORT_PRIVATE HpackHeaderTable {
// Determine the set of entries which would be evicted by the insertion
// of |name| & |value| into the table, as per section 3.3.3. No eviction
// actually occurs. The set is returned via range [begin_out, end_out).
- void EvictionSet(base::StringPiece name, base::StringPiece value,
+ void EvictionSet(base::StringPiece name,
+ base::StringPiece value,
EntryTable::iterator* begin_out,
EntryTable::iterator* end_out);

Powered by Google App Engine
This is Rietveld 408576698