| Index: components/webdata/common/web_data_service_base.h
|
| diff --git a/components/webdata/common/web_data_service_base.h b/components/webdata/common/web_data_service_base.h
|
| index 3a6a80bdb430372070ace2d04e3468d5cabe199f..ab9a4d42d22f55cdb754c2a270121998dc764ab5 100644
|
| --- a/components/webdata/common/web_data_service_base.h
|
| +++ b/components/webdata/common/web_data_service_base.h
|
| @@ -9,7 +9,7 @@
|
| #include "base/files/file_path.h"
|
| #include "base/macros.h"
|
| #include "base/memory/ref_counted.h"
|
| -#include "base/memory/ref_counted_delete_on_message_loop.h"
|
| +#include "base/memory/ref_counted_delete_on_sequence.h"
|
| #include "components/webdata/common/webdata_export.h"
|
| #include "sql/init_status.h"
|
|
|
| @@ -24,7 +24,7 @@ class SingleThreadTaskRunner;
|
| // Base for WebDataService class hierarchy.
|
| // WebDataServiceBase is destroyed on the UI thread.
|
| class WEBDATA_EXPORT WebDataServiceBase
|
| - : public base::RefCountedDeleteOnMessageLoop<WebDataServiceBase> {
|
| + : public base::RefCountedDeleteOnSequence<WebDataServiceBase> {
|
| public:
|
| // All requests return an opaque handle of the following type.
|
| typedef int Handle;
|
| @@ -84,7 +84,7 @@ class WEBDATA_EXPORT WebDataServiceBase
|
| virtual WebDatabase* GetDatabase();
|
|
|
| protected:
|
| - friend class base::RefCountedDeleteOnMessageLoop<WebDataServiceBase>;
|
| + friend class base::RefCountedDeleteOnSequence<WebDataServiceBase>;
|
| friend class base::DeleteHelper<WebDataServiceBase>;
|
|
|
| virtual ~WebDataServiceBase();
|
|
|