| Index: components/sync/base/weak_handle.h
|
| diff --git a/components/sync/base/weak_handle.h b/components/sync/base/weak_handle.h
|
| index 5db9810c7b4fa5b4edcdf80c3fa163bfd2cf21a7..dd5915f2aa3ad88b491814c3693eb9ab53cefffb 100644
|
| --- a/components/sync/base/weak_handle.h
|
| +++ b/components/sync/base/weak_handle.h
|
| @@ -47,7 +47,7 @@
|
| // const WeakHandle<Foo> foo_;
|
| // };
|
| //
|
| -// class Foo : public SupportsWeakPtr<Foo>, public NonThreadSafe {
|
| +// class Foo : public SupportsWeakPtr<Foo> {
|
| // public:
|
| // Foo() {
|
| // SpawnFooIOWorkerOnIOThread(base::MakeWeakHandle(AsWeakPtr()));
|
| @@ -58,6 +58,9 @@
|
| // void OnIOStart() { DCHECK(CalledOnValidThread(); ... }
|
| // void OnIOEvent(IOEvent e) { DCHECK(CalledOnValidThread(); ... }
|
| // void OnIOError(IOError err) { DCHECK(CalledOnValidThread(); ... }
|
| +//
|
| +// private:
|
| +// SEQUENCE_CHECKER(sequence_checker_);
|
| // };
|
|
|
| namespace tracked_objects {
|
|
|