Index: net/base/backoff_entry.h |
diff --git a/net/base/backoff_entry.h b/net/base/backoff_entry.h |
index f8543cd7556f709f5bb8441f980e6ffcaf4d8c3c..6f719d092722c6c1041d31b9ddf00f605172107f 100644 |
--- a/net/base/backoff_entry.h |
+++ b/net/base/backoff_entry.h |
@@ -8,7 +8,7 @@ |
#include <stdint.h> |
#include "base/macros.h" |
-#include "base/threading/non_thread_safe.h" |
+#include "base/sequence_checker.h" |
#include "base/time/time.h" |
#include "net/base/net_export.h" |
@@ -23,7 +23,7 @@ namespace net { |
// |
// This utility class knows nothing about network specifics; it is |
// intended for reuse in various networking scenarios. |
-class NET_EXPORT BackoffEntry : NON_EXPORTED_BASE(public base::NonThreadSafe) { |
+class NET_EXPORT BackoffEntry { |
public: |
// The set of parameters that define a back-off policy. When modifying this, |
// increment SERIALIZATION_VERSION_NUMBER in backoff_entry_serializer.cc. |
@@ -126,6 +126,8 @@ class NET_EXPORT BackoffEntry : NON_EXPORTED_BASE(public base::NonThreadSafe) { |
base::TickClock* const clock_; // Not owned. |
+ SEQUENCE_CHECKER(sequence_checker_); |
+ |
DISALLOW_COPY_AND_ASSIGN(BackoffEntry); |
}; |