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

Unified Diff: net/spdy/core/hpack/hpack_huffman_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_huffman_decoder.h ('k') | net/spdy/core/hpack/hpack_input_stream.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/spdy/core/hpack/hpack_huffman_table.h
diff --git a/net/spdy/core/hpack/hpack_huffman_table.h b/net/spdy/core/hpack/hpack_huffman_table.h
index fe2d0fd9fd1882f3418d71cff2efb2115c93b72f..1eeaf1e9d9c147a2fc5e78463a47056433711223 100644
--- a/net/spdy/core/hpack/hpack_huffman_table.h
+++ b/net/spdy/core/hpack/hpack_huffman_table.h
@@ -10,8 +10,8 @@
#include <cstddef>
#include <vector>
-#include "net/base/net_export.h"
#include "net/spdy/core/hpack/hpack_constants.h"
+#include "net/spdy/platform/api/spdy_export.h"
#include "net/spdy/platform/api/spdy_string.h"
#include "net/spdy/platform/api/spdy_string_piece.h"
@@ -27,7 +27,7 @@ class HpackOutputStream;
// HpackHuffmanTable encodes and decodes string literals using a constructed
// canonical Huffman code. Once initialized, an instance is read only and
// may be accessed only through its const interface.
-class NET_EXPORT_PRIVATE HpackHuffmanTable {
+class SPDY_EXPORT_PRIVATE HpackHuffmanTable {
public:
friend class test::HpackHuffmanTablePeer;
@@ -37,7 +37,7 @@ class NET_EXPORT_PRIVATE HpackHuffmanTable {
// a portion of the prefix mapped to DecodeEntry, which in turn either
// captures a terminal symbol, or points to the next DecodeTable to consult
// with successive portions of the prefix.
- struct NET_EXPORT_PRIVATE DecodeEntry {
+ struct SPDY_EXPORT_PRIVATE DecodeEntry {
DecodeEntry();
DecodeEntry(uint8_t next_table_index, uint8_t length, uint16_t symbol_id);
@@ -50,7 +50,7 @@ class NET_EXPORT_PRIVATE HpackHuffmanTable {
// Set only for terminal entries.
uint16_t symbol_id;
};
- struct NET_EXPORT_PRIVATE DecodeTable {
+ struct SPDY_EXPORT_PRIVATE DecodeTable {
// Number of bits indexed by the chain leading to this table.
uint8_t prefix_length;
// Number of additional prefix bits this table indexes.
« no previous file with comments | « net/spdy/core/hpack/hpack_huffman_decoder.h ('k') | net/spdy/core/hpack/hpack_input_stream.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698