| Index: chrome/browser/chromeos/gdata/gdata_file_system_proxy.cc
|
| diff --git a/chrome/browser/chromeos/gdata/gdata_file_system_proxy.cc b/chrome/browser/chromeos/gdata/gdata_file_system_proxy.cc
|
| index 5d72c16fe21dc73be51a4158dd68b32054ce3e0f..7efcb59aa31efd674b3702267b4505e42c71600f 100644
|
| --- a/chrome/browser/chromeos/gdata/gdata_file_system_proxy.cc
|
| +++ b/chrome/browser/chromeos/gdata/gdata_file_system_proxy.cc
|
| @@ -177,11 +177,6 @@ GDataFileSystemProxy::GDataFileSystemProxy(
|
| DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
|
| }
|
|
|
| -GDataFileSystemProxy::~GDataFileSystemProxy() {
|
| - // Should be deleted from the CrosMountPointProvider on IO thread.
|
| - DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
|
| -}
|
| -
|
| void GDataFileSystemProxy::GetFileInfo(const GURL& file_url,
|
| const FileSystemOperationInterface::GetMetadataCallback& callback) {
|
| DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
|
| @@ -463,6 +458,11 @@ void GDataFileSystemProxy::CreateWritableSnapshotFile(
|
| callback));
|
| }
|
|
|
| +GDataFileSystemProxy::~GDataFileSystemProxy() {
|
| + // Should be deleted from the CrosMountPointProvider on IO thread.
|
| + DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
|
| +}
|
| +
|
| // static.
|
| bool GDataFileSystemProxy::ValidateUrl(const GURL& url, FilePath* file_path) {
|
| // what platform you're on.
|
|
|