Chromium Code Reviews| Index: chrome/browser/browsing_data/browsing_data_quota_helper.h |
| diff --git a/chrome/browser/browsing_data/browsing_data_quota_helper.h b/chrome/browser/browsing_data/browsing_data_quota_helper.h |
| index c6883edb8b42801b45959e901fbd3dca02b8306c..955d65d815a7e77f9dc042d7a2b0033cc8f8f919 100644 |
| --- a/chrome/browser/browsing_data/browsing_data_quota_helper.h |
| +++ b/chrome/browser/browsing_data/browsing_data_quota_helper.h |
| @@ -10,10 +10,14 @@ |
| #include "base/callback.h" |
| #include "base/memory/ref_counted.h" |
| -#include "base/message_loop/message_loop_proxy.h" |
| #include "base/sequenced_task_runner_helpers.h" |
| #include "storage/common/quota/quota_types.h" |
| + |
| +namespace base { |
| +class SingleThreadTaskRunner; |
| +} // namespace base |
|
Bernhard Bauer
2015/04/29 10:31:34
Nit: Two spaces before the comment.
Pranay
2015/05/04 03:28:21
Done.
Pranay
2015/05/04 03:30:31
Done.
|
| + |
| class BrowsingDataQuotaHelper; |
| class Profile; |
| @@ -67,13 +71,13 @@ class BrowsingDataQuotaHelper |
| virtual void RevokeHostQuota(const std::string& host) = 0; |
| protected: |
| - explicit BrowsingDataQuotaHelper(base::MessageLoopProxy* io_thread_); |
| + explicit BrowsingDataQuotaHelper(base::SingleThreadTaskRunner* io_thread_); |
| virtual ~BrowsingDataQuotaHelper(); |
| private: |
| friend class base::DeleteHelper<BrowsingDataQuotaHelper>; |
| friend struct BrowsingDataQuotaHelperDeleter; |
| - scoped_refptr<base::MessageLoopProxy> io_thread_; |
| + scoped_refptr<base::SingleThreadTaskRunner> io_thread_; |
| DISALLOW_COPY_AND_ASSIGN(BrowsingDataQuotaHelper); |
| }; |