diff options
author | cpu@chromium.org <cpu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-09-21 22:38:00 +0000 |
---|---|---|
committer | cpu@chromium.org <cpu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-09-21 22:38:00 +0000 |
commit | c35a02d56868eae5cce8cd912c3c57e4b5ee4c63 (patch) | |
tree | 4acc0e816a996879da8c88c827224d738d1939ac /chrome/browser/jumplist.h | |
parent | ee8a362d225a9a495154dad3d005f9c4080d5adc (diff) | |
download | chromium_src-c35a02d56868eae5cce8cd912c3c57e4b5ee4c63.zip chromium_src-c35a02d56868eae5cce8cd912c3c57e4b5ee4c63.tar.gz chromium_src-c35a02d56868eae5cce8cd912c3c57e4b5ee4c63.tar.bz2 |
Making ShellLinkItem refcount thread safe
-It is being addref() in main thread and in the file thread
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/213026
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@26754 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/jumplist.h')
-rw-r--r-- | chrome/browser/jumplist.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/jumplist.h b/chrome/browser/jumplist.h index e107482..0a8fbb2 100644 --- a/chrome/browser/jumplist.h +++ b/chrome/browser/jumplist.h @@ -35,7 +35,7 @@ class PageUsageData; // be executed, this class does not have any variables for it because our // utility functions always use "chrome.exe" as the application and we don't // need it. -class ShellLinkItem : public base::RefCounted<ShellLinkItem> { +class ShellLinkItem : public base::RefCountedThreadSafe<ShellLinkItem> { public: ShellLinkItem() : index_(0), favicon_(false) { } |