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

Unified Diff: net/spdy/core/hpack/hpack_header_table.h

Issue 2839373002: Implement SPDY_EXPORT and SPDY_EXPORT_PRIVATE macros. (Closed)
Patch Set: Rebase: manually resolve trivial merge conflicts. Created 3 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 | « net/spdy/core/hpack/hpack_entry.h ('k') | net/spdy/core/hpack/hpack_huffman_decoder.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/spdy/core/hpack/hpack_header_table.h
diff --git a/net/spdy/core/hpack/hpack_header_table.h b/net/spdy/core/hpack/hpack_header_table.h
index aedb3d497f476c2efe2465df581e85467e007545..23941e0c847af4e7b22708a7d78150bdae2598fd 100644
--- a/net/spdy/core/hpack/hpack_header_table.h
+++ b/net/spdy/core/hpack/hpack_header_table.h
@@ -12,8 +12,8 @@
#include <unordered_set>
#include "base/macros.h"
-#include "net/base/net_export.h"
#include "net/spdy/core/hpack/hpack_entry.h"
+#include "net/spdy/platform/api/spdy_export.h"
#include "net/spdy/platform/api/spdy_string_piece.h"
// All section references below are to http://tools.ietf.org/html/rfc7541.
@@ -25,7 +25,7 @@ class HpackHeaderTablePeer;
} // namespace test
// A data structure for the static table (2.3.1) and the dynamic table (2.3.2).
-class NET_EXPORT_PRIVATE HpackHeaderTable {
+class SPDY_EXPORT_PRIVATE HpackHeaderTable {
public:
friend class test::HpackHeaderTablePeer;
@@ -58,10 +58,10 @@ class NET_EXPORT_PRIVATE HpackHeaderTable {
// extended to map to list iterators.
typedef std::deque<HpackEntry> EntryTable;
- struct NET_EXPORT_PRIVATE EntryHasher {
+ struct SPDY_EXPORT_PRIVATE EntryHasher {
size_t operator()(const HpackEntry* entry) const;
};
- struct NET_EXPORT_PRIVATE EntriesEq {
+ struct SPDY_EXPORT_PRIVATE EntriesEq {
bool operator()(const HpackEntry* lhs, const HpackEntry* rhs) const;
};
« no previous file with comments | « net/spdy/core/hpack/hpack_entry.h ('k') | net/spdy/core/hpack/hpack_huffman_decoder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698