Chromium Code Reviews| Index: net/base/capturing_net_log.h |
| =================================================================== |
| --- net/base/capturing_net_log.h (revision 141205) |
| +++ net/base/capturing_net_log.h (working copy) |
| @@ -16,7 +16,6 @@ |
| #include "base/memory/scoped_ptr.h" |
| #include "base/synchronization/lock.h" |
| #include "base/time.h" |
| -#include "net/base/net_export.h" |
| #include "net/base/net_log.h" |
| namespace base { |
| @@ -30,9 +29,9 @@ |
| // in production code. |
| // TODO(mmenke): Move CapturingNetLog to net_unittests project, once the CL |
|
eroman
2012/06/08 18:18:23
Remove this comment
mmenke
2012/06/08 18:27:07
Done.
|
| // to remove the use of it in the Jingle unit tests has landed. |
| -class NET_EXPORT CapturingNetLog : public NetLog { |
| +class CapturingNetLog : public NetLog { |
| public: |
| - struct NET_EXPORT_PRIVATE CapturedEntry { |
| + struct CapturedEntry { |
| CapturedEntry(EventType type, |
| const base::TimeTicks& time, |
| Source source, |
| @@ -116,7 +115,7 @@ |
| // |
| // CapturingBoundNetLog can easily be converted to a BoundNetLog using the |
| // bound() method. |
| -class NET_EXPORT_PRIVATE CapturingBoundNetLog { |
| +class CapturingBoundNetLog { |
| public: |
| explicit CapturingBoundNetLog(size_t max_num_entries); |