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

Unified Diff: net/base/capturing_net_log.h

Issue 6969077: net: Add NET_API to net/base (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 7 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
Index: net/base/capturing_net_log.h
===================================================================
--- net/base/capturing_net_log.h (revision 85332)
+++ net/base/capturing_net_log.h (working copy)
@@ -14,15 +14,16 @@
#include "base/memory/scoped_ptr.h"
#include "base/synchronization/lock.h"
#include "base/time.h"
+#include "net/base/net_api.h"
#include "net/base/net_log.h"
namespace net {
// CapturingNetLog is an implementation of NetLog that saves messages to a
// bounded buffer.
-class CapturingNetLog : public NetLog {
+class NET_API CapturingNetLog : public NetLog {
public:
- struct Entry {
+ struct NET_API Entry {
Entry(EventType type,
const base::TimeTicks& time,
Source source,
@@ -83,7 +84,7 @@
//
// CapturingBoundNetLog can easily be converted to a BoundNetLog using the
// bound() method.
-class CapturingBoundNetLog {
+class NET_TEST CapturingBoundNetLog {
public:
CapturingBoundNetLog(const NetLog::Source& source, CapturingNetLog* net_log);

Powered by Google App Engine
This is Rietveld 408576698