| Index: components/safe_browsing_db/v4_update_protocol_manager.h
|
| diff --git a/components/safe_browsing_db/v4_update_protocol_manager.h b/components/safe_browsing_db/v4_update_protocol_manager.h
|
| index 5c60a0c398d49979a65139dcb1200a7f2d41cf9d..706c7d4c331332c2a4ff130f457a13b3b2ebe7df 100644
|
| --- a/components/safe_browsing_db/v4_update_protocol_manager.h
|
| +++ b/components/safe_browsing_db/v4_update_protocol_manager.h
|
| @@ -18,7 +18,7 @@
|
|
|
| #include "base/gtest_prod_util.h"
|
| #include "base/macros.h"
|
| -#include "base/threading/non_thread_safe.h"
|
| +#include "base/sequence_checker.h"
|
| #include "base/time/time.h"
|
| #include "base/timer/timer.h"
|
| #include "components/safe_browsing/common/safe_browsing_prefs.h"
|
| @@ -47,8 +47,7 @@ typedef base::Callback<void(std::unique_ptr<ParsedServerResponse>)>
|
|
|
| typedef base::Callback<ExtendedReportingLevel()> ExtendedReportingLevelCallback;
|
|
|
| -class V4UpdateProtocolManager : public net::URLFetcherDelegate,
|
| - public base::NonThreadSafe {
|
| +class V4UpdateProtocolManager : public net::URLFetcherDelegate {
|
| public:
|
| ~V4UpdateProtocolManager() override;
|
|
|
| @@ -192,6 +191,8 @@ class V4UpdateProtocolManager : public net::URLFetcherDelegate,
|
|
|
| ExtendedReportingLevelCallback extended_reporting_level_callback_;
|
|
|
| + SEQUENCE_CHECKER(sequence_checker_);
|
| +
|
| DISALLOW_COPY_AND_ASSIGN(V4UpdateProtocolManager);
|
| };
|
|
|
|
|