| Index: components/history/core/test/history_client_fake_bookmarks.cc
|
| diff --git a/components/history/core/test/history_client_fake_bookmarks.cc b/components/history/core/test/history_client_fake_bookmarks.cc
|
| index 67596503b78064aef6ce244ad4e00f0b8f030ed9..e54087ca821a86ee8b177355f5466bc58841d66e 100644
|
| --- a/components/history/core/test/history_client_fake_bookmarks.cc
|
| +++ b/components/history/core/test/history_client_fake_bookmarks.cc
|
| @@ -15,7 +15,8 @@
|
|
|
| namespace history {
|
|
|
| -class FakeBookmarkDatabase : public base::RefCounted<FakeBookmarkDatabase> {
|
| +class FakeBookmarkDatabase
|
| + : public base::RefCountedThreadSafe<FakeBookmarkDatabase> {
|
| public:
|
| FakeBookmarkDatabase() {}
|
|
|
| @@ -27,7 +28,7 @@ class FakeBookmarkDatabase : public base::RefCounted<FakeBookmarkDatabase> {
|
| void GetBookmarks(std::vector<URLAndTitle>* bookmarks);
|
|
|
| private:
|
| - friend class base::RefCounted<FakeBookmarkDatabase>;
|
| + friend class base::RefCountedThreadSafe<FakeBookmarkDatabase>;
|
|
|
| ~FakeBookmarkDatabase() {}
|
|
|
|
|