X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fchrome%2Fbrowser%2Fbrowsing_data%2Fbrowsing_data_file_system_helper.cc;h=14ccbbcff81dee97814f104550857c698c7b4eb4;hb=4a1a0bdd01eef90b0826a0e761d3379d3715c10f;hp=294c179d5cfed28b399bb66482e7d10e2c080566;hpb=b1be5ca53587d23e7aeb77b26861fdc0a181ffd8;p=platform%2Fframework%2Fweb%2Fcrosswalk.git diff --git a/src/chrome/browser/browsing_data/browsing_data_file_system_helper.cc b/src/chrome/browser/browsing_data/browsing_data_file_system_helper.cc index 294c179..14ccbbc 100644 --- a/src/chrome/browser/browsing_data/browsing_data_file_system_helper.cc +++ b/src/chrome/browser/browsing_data/browsing_data_file_system_helper.cc @@ -4,6 +4,8 @@ #include "chrome/browser/browsing_data/browsing_data_file_system_helper.h" +#include + #include "base/bind.h" #include "base/compiler_specific.h" #include "base/memory/scoped_ptr.h" @@ -95,9 +97,9 @@ BrowsingDataFileSystemHelperImpl::~BrowsingDataFileSystemHelperImpl() { void BrowsingDataFileSystemHelperImpl::StartFetching( const base::Callback&)>& callback) { - DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); + DCHECK_CURRENTLY_ON(BrowserThread::UI); DCHECK(!is_fetching_); - DCHECK_EQ(false, callback.is_null()); + DCHECK(!callback.is_null()); is_fetching_ = true; completion_callback_ = callback; file_task_runner()->PostTask( @@ -109,7 +111,7 @@ void BrowsingDataFileSystemHelperImpl::StartFetching( void BrowsingDataFileSystemHelperImpl::DeleteFileSystemOrigin( const GURL& origin) { - DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); + DCHECK_CURRENTLY_ON(BrowserThread::UI); file_task_runner()->PostTask( FROM_HERE, base::Bind( @@ -124,7 +126,9 @@ void BrowsingDataFileSystemHelperImpl::FetchFileSystemInfoInFileThread() { const fileapi::FileSystemType types[] = { fileapi::kFileSystemTypeTemporary, fileapi::kFileSystemTypePersistent, +#if defined(ENABLE_EXTENSIONS) fileapi::kFileSystemTypeSyncable, +#endif }; typedef std::map OriginInfoMap; @@ -161,7 +165,7 @@ void BrowsingDataFileSystemHelperImpl::FetchFileSystemInfoInFileThread() { } void BrowsingDataFileSystemHelperImpl::NotifyOnUIThread() { - DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); + DCHECK_CURRENTLY_ON(BrowserThread::UI); DCHECK(is_fetching_); completion_callback_.Run(file_system_info_); completion_callback_.Reset(); @@ -198,7 +202,7 @@ CannedBrowsingDataFileSystemHelper::~CannedBrowsingDataFileSystemHelper() {} CannedBrowsingDataFileSystemHelper* CannedBrowsingDataFileSystemHelper::Clone() { - DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); + DCHECK_CURRENTLY_ON(BrowserThread::UI); CannedBrowsingDataFileSystemHelper* clone = new CannedBrowsingDataFileSystemHelper(); // This list only mutates on the UI thread, so it's safe to work with it here @@ -209,7 +213,7 @@ CannedBrowsingDataFileSystemHelper* void CannedBrowsingDataFileSystemHelper::AddFileSystem( const GURL& origin, const fileapi::FileSystemType type, const int64 size) { - DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); + DCHECK_CURRENTLY_ON(BrowserThread::UI); // This canned implementation of AddFileSystem uses an O(n^2) algorithm; which // is fine, as it isn't meant for use in a high-volume context. If it turns // out that we want to start using this in a context with many, many origins, @@ -245,13 +249,13 @@ bool CannedBrowsingDataFileSystemHelper::empty() const { } size_t CannedBrowsingDataFileSystemHelper::GetFileSystemCount() const { - DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); + DCHECK_CURRENTLY_ON(BrowserThread::UI); return file_system_info_.size(); } void CannedBrowsingDataFileSystemHelper::StartFetching( const base::Callback&)>& callback) { - DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); + DCHECK_CURRENTLY_ON(BrowserThread::UI); DCHECK(!callback.is_null()); BrowserThread::PostTask(