Index: chrome/browser/browser_process_impl.h |
diff --git a/chrome/browser/browser_process_impl.h b/chrome/browser/browser_process_impl.h |
index ac66b067e7eaef3afa259c9a7cde5f42f556ff5c..b3f81e363c98e17c5fb6c6b44d30fb8a5bf600b5 100644 |
--- a/chrome/browser/browser_process_impl.h |
+++ b/chrome/browser/browser_process_impl.h |
@@ -18,7 +18,7 @@ |
#include "base/debug/stack_trace.h" |
#include "base/macros.h" |
#include "base/memory/ref_counted.h" |
-#include "base/threading/non_thread_safe.h" |
+#include "base/sequence_checker.h" |
#include "base/timer/timer.h" |
#include "build/build_config.h" |
#include "chrome/browser/browser_process.h" |
@@ -65,7 +65,6 @@ class PolicyService; |
// Real implementation of BrowserProcess that creates and returns the services. |
class BrowserProcessImpl : public BrowserProcess, |
- public base::NonThreadSafe, |
public KeepAliveStateObserver { |
public: |
// |local_state_task_runner| must be a shutdown-blocking task runner. |
@@ -354,6 +353,8 @@ class BrowserProcessImpl : public BrowserProcess, |
std::unique_ptr<physical_web::PhysicalWebDataSource> |
physical_web_data_source_; |
+ SEQUENCE_CHECKER(sequence_checker_); |
+ |
DISALLOW_COPY_AND_ASSIGN(BrowserProcessImpl); |
}; |