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

Unified Diff: net/spdy/core/hpack/hpack_constants.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/fuzzing/hpack_fuzz_util.h ('k') | net/spdy/core/hpack/hpack_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_constants.h
diff --git a/net/spdy/core/hpack/hpack_constants.h b/net/spdy/core/hpack/hpack_constants.h
index f1ae5f9a7fe7bd0029e990a259c281e605ea5a92..89790735ec1dbee4ed48dfecca561cf7434d9ca6 100644
--- a/net/spdy/core/hpack/hpack_constants.h
+++ b/net/spdy/core/hpack/hpack_constants.h
@@ -10,7 +10,7 @@
#include <vector>
-#include "net/base/net_export.h"
+#include "net/spdy/platform/api/spdy_export.h"
// All section references below are to
// http://tools.ietf.org/html/draft-ietf-httpbis-header-compression-08
@@ -70,20 +70,20 @@ const HpackPrefix kLiteralNeverIndexOpcode = {0x1, 4};
const HpackPrefix kHeaderTableSizeUpdateOpcode = {0x1, 3};
// Returns symbol code table from "Appendix C. Huffman Code".
-NET_EXPORT_PRIVATE std::vector<HpackHuffmanSymbol> HpackHuffmanCode();
+SPDY_EXPORT_PRIVATE std::vector<HpackHuffmanSymbol> HpackHuffmanCode();
// Returns static table from "Appendix B. Static Table Definition".
-NET_EXPORT_PRIVATE std::vector<HpackStaticEntry> HpackStaticTableVector();
+SPDY_EXPORT_PRIVATE std::vector<HpackStaticEntry> HpackStaticTableVector();
// Returns a HpackHuffmanTable instance initialized with |kHpackHuffmanCode|.
// The instance is read-only, has static lifetime, and is safe to share amoung
// threads. This function is thread-safe.
-NET_EXPORT_PRIVATE const HpackHuffmanTable& ObtainHpackHuffmanTable();
+SPDY_EXPORT_PRIVATE const HpackHuffmanTable& ObtainHpackHuffmanTable();
// Returns a HpackStaticTable instance initialized with |kHpackStaticTable|.
// The instance is read-only, has static lifetime, and is safe to share amoung
// threads. This function is thread-safe.
-NET_EXPORT_PRIVATE const HpackStaticTable& ObtainHpackStaticTable();
+SPDY_EXPORT_PRIVATE const HpackStaticTable& ObtainHpackStaticTable();
// Pseudo-headers start with a colon. (HTTP2 8.1.2.1., HPACK 3.1.)
const char kPseudoHeaderPrefix = ':';
« no previous file with comments | « net/spdy/core/fuzzing/hpack_fuzz_util.h ('k') | net/spdy/core/hpack/hpack_decoder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698