diff options
author | kkimlabs@chromium.org <kkimlabs@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-05-15 20:35:46 +0000 |
---|---|---|
committer | kkimlabs@chromium.org <kkimlabs@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-05-15 20:35:46 +0000 |
commit | 38be420f6c40d226438d85ff088e334ed1b2f4a8 (patch) | |
tree | 01a4c1524d669407d4047fb9373aeaa5bf813d63 /components/enhanced_bookmarks/image_store.h | |
parent | 9fab5f375696a25d7d37199d4646a6f18d6cb869 (diff) | |
download | chromium_src-38be420f6c40d226438d85ff088e334ed1b2f4a8.zip chromium_src-38be420f6c40d226438d85ff088e334ed1b2f4a8.tar.gz chromium_src-38be420f6c40d226438d85ff088e334ed1b2f4a8.tar.bz2 |
Change ImageStore to use SequenceChecker instead of ThreadChecker.
We will be using ImageStore with
BrowserThread::PostBlockingPoolSequencedTask which doesn't always
guarantee same thread execution.
BUG=368034
Review URL: https://codereview.chromium.org/288573003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@270801 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'components/enhanced_bookmarks/image_store.h')
-rw-r--r-- | components/enhanced_bookmarks/image_store.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/enhanced_bookmarks/image_store.h b/components/enhanced_bookmarks/image_store.h index 46ca138..a7c7a15 100644 --- a/components/enhanced_bookmarks/image_store.h +++ b/components/enhanced_bookmarks/image_store.h @@ -8,7 +8,7 @@ #include <map> #include <set> -#include "base/threading/thread_checker.h" +#include "base/sequence_checker.h" #include "ui/gfx/image/image.h" class GURL; @@ -53,7 +53,7 @@ class ImageStore { void ChangeImageURL(const GURL& from, const GURL& to); protected: - base::ThreadChecker thread_checker_; + base::SequenceChecker sequence_checker_; private: DISALLOW_COPY_AND_ASSIGN(ImageStore); |