| Index: chrome/browser/google_apis/drive_api_service.cc
|
| diff --git a/chrome/browser/google_apis/drive_api_service.cc b/chrome/browser/google_apis/drive_api_service.cc
|
| index de23d5c9ba84234ab5aa92ce132e76fd1748c936..1f87be1d26828104280253bbddf66b7724eb968d 100644
|
| --- a/chrome/browser/google_apis/drive_api_service.cc
|
| +++ b/chrome/browser/google_apis/drive_api_service.cc
|
| @@ -377,8 +377,14 @@ void DriveAPIService::AddNewDirectory(
|
| DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
|
| DCHECK(!callback.is_null());
|
|
|
| - // TODO(kochi): Implement this.
|
| - NOTREACHED();
|
| + runner_->StartOperationWithRetry(
|
| + new drive::CreateDirectoryOperation(
|
| + operation_registry(),
|
| + url_request_context_getter_,
|
| + url_generator_,
|
| + parent_resource_id,
|
| + directory_name,
|
| + base::Bind(&ParseResourceEntryAndRun, callback)));
|
| }
|
|
|
| void DriveAPIService::CopyHostedDocument(
|
|
|