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

Unified Diff: net/spdy/core/hpack/hpack_encoder.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_decoder_interface.h ('k') | net/spdy/core/hpack/hpack_entry.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/spdy/core/hpack/hpack_encoder.h
diff --git a/net/spdy/core/hpack/hpack_encoder.h b/net/spdy/core/hpack/hpack_encoder.h
index b691ba71bb0410dbb8abb67c73a2f95f18828b99..030afa5d2b18d9c60e82a75bf881ce45a31b868b 100644
--- a/net/spdy/core/hpack/hpack_encoder.h
+++ b/net/spdy/core/hpack/hpack_encoder.h
@@ -14,10 +14,10 @@
#include <vector>
#include "base/macros.h"
-#include "net/base/net_export.h"
#include "net/spdy/core/hpack/hpack_header_table.h"
#include "net/spdy/core/hpack/hpack_output_stream.h"
#include "net/spdy/core/spdy_protocol.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"
@@ -32,7 +32,7 @@ namespace test {
class HpackEncoderPeer;
} // namespace test
-class NET_EXPORT_PRIVATE HpackEncoder {
+class SPDY_EXPORT_PRIVATE HpackEncoder {
public:
using Representation = std::pair<SpdyStringPiece, SpdyStringPiece>;
using Representations = std::vector<Representation>;
@@ -58,7 +58,7 @@ class NET_EXPORT_PRIVATE HpackEncoder {
// whether or not the encoding was successful.
bool EncodeHeaderSet(const SpdyHeaderBlock& header_set, SpdyString* output);
- class NET_EXPORT_PRIVATE ProgressiveEncoder {
+ class SPDY_EXPORT_PRIVATE ProgressiveEncoder {
public:
virtual ~ProgressiveEncoder() {}
« no previous file with comments | « net/spdy/core/hpack/hpack_decoder_interface.h ('k') | net/spdy/core/hpack/hpack_entry.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698