Index: net/spdy/spdy_framer.h |
=================================================================== |
--- net/spdy/spdy_framer.h (revision 95949) |
+++ net/spdy/spdy_framer.h (working copy) |
@@ -14,7 +14,7 @@ |
#include "base/basictypes.h" |
#include "base/gtest_prod_util.h" |
#include "base/memory/scoped_ptr.h" |
-#include "net/base/net_api.h" |
+#include "net/base/net_export.h" |
#include "net/base/sys_byteorder.h" |
#include "net/spdy/spdy_protocol.h" |
@@ -54,7 +54,7 @@ |
// SpdyFramerVisitorInterface is a set of callbacks for the SpdyFramer. |
// Implement this interface to receive event callbacks as frames are |
// decoded from the framer. |
-class NET_TEST SpdyFramerVisitorInterface { |
+class NET_EXPORT_PRIVATE SpdyFramerVisitorInterface { |
public: |
virtual ~SpdyFramerVisitorInterface() {} |
@@ -75,7 +75,7 @@ |
size_t len) = 0; |
}; |
-class NET_TEST SpdyFramer { |
+class NET_EXPORT_PRIVATE SpdyFramer { |
public: |
// SPDY states. |
// TODO(mbelshe): Can we move these into the implementation |