| Index: content/browser/memory/memory_coordinator_impl.h
|
| diff --git a/content/browser/memory/memory_coordinator_impl.h b/content/browser/memory/memory_coordinator_impl.h
|
| index a832ec9cab6a8c347a473ee8c54c5372478e9e63..4d936a4a19a03a7ec1f9107e9325939fc1d8f24a 100644
|
| --- a/content/browser/memory/memory_coordinator_impl.h
|
| +++ b/content/browser/memory/memory_coordinator_impl.h
|
| @@ -10,8 +10,8 @@
|
| #include "base/memory/memory_coordinator_client.h"
|
| #include "base/memory/memory_coordinator_proxy.h"
|
| #include "base/memory/memory_pressure_monitor.h"
|
| +#include "base/sequence_checker.h"
|
| #include "base/single_thread_task_runner.h"
|
| -#include "base/threading/non_thread_safe.h"
|
| #include "base/time/tick_clock.h"
|
| #include "base/time/time.h"
|
| #include "content/common/content_export.h"
|
| @@ -45,8 +45,7 @@ enum class MemoryCondition : int {
|
| // MemoryCoordinatorImpl is an implementation of MemoryCoordinator.
|
| class CONTENT_EXPORT MemoryCoordinatorImpl : public base::MemoryCoordinator,
|
| public MemoryCoordinator,
|
| - public NotificationObserver,
|
| - public base::NonThreadSafe {
|
| + public NotificationObserver {
|
| public:
|
| static MemoryCoordinatorImpl* GetInstance();
|
|
|
| @@ -256,6 +255,8 @@ class CONTENT_EXPORT MemoryCoordinatorImpl : public base::MemoryCoordinator,
|
| // disconnected.
|
| ChildInfoMap children_;
|
|
|
| + SEQUENCE_CHECKER(sequence_checker_);
|
| +
|
| DISALLOW_COPY_AND_ASSIGN(MemoryCoordinatorImpl);
|
| };
|
|
|
|
|