| Index: base/sequence_checker.h
|
| ===================================================================
|
| --- base/sequence_checker.h (revision 251478)
|
| +++ base/sequence_checker.h (working copy)
|
| @@ -5,8 +5,6 @@
|
| #ifndef BASE_SEQUENCE_CHECKER_H_
|
| #define BASE_SEQUENCE_CHECKER_H_
|
|
|
| -#include "base/memory/ref_counted.h"
|
| -
|
| // See comments for the similar block in thread_checker.h.
|
| #if (!defined(NDEBUG) || defined(DCHECK_ALWAYS_ON))
|
| #define ENABLE_SEQUENCE_CHECKER 1
|
| @@ -14,14 +12,10 @@
|
| #define ENABLE_SEQUENCE_CHECKER 0
|
| #endif
|
|
|
| -#if ENABLE_SEQUENCE_CHECKER
|
| #include "base/sequence_checker_impl.h"
|
| -#endif
|
|
|
| namespace base {
|
|
|
| -class SequencedTaskRunner;
|
| -
|
| // Do nothing implementation, for use in release mode.
|
| //
|
| // Note: You should almost always use the SequenceChecker class to get
|
| @@ -52,7 +46,7 @@
|
| // SequenceChecker sequence_checker_;
|
| // }
|
| //
|
| -// In Release mode, CalledOnValidSequence will always return true.
|
| +// In Release mode, CalledOnValidSequencedThread() will always return true.
|
| #if ENABLE_SEQUENCE_CHECKER
|
| class SequenceChecker : public SequenceCheckerImpl {
|
| };
|
|
|