diff options
author | tzik@google.com <tzik@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-22 09:30:28 +0000 |
---|---|---|
committer | tzik@google.com <tzik@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-22 09:30:28 +0000 |
commit | fb0fc20c8a2c6efe7fdedac1ceb340c22fe95efc (patch) | |
tree | a2d1cbf3859dc74f7f82b28fb85c4cb498cc097e /chrome/browser/chromeos/drive/drive_task_executor.cc | |
parent | 8046f202114590cfd16e4c2ee51a74e7fe097804 (diff) | |
download | chromium_src-fb0fc20c8a2c6efe7fdedac1ceb340c22fe95efc.zip chromium_src-fb0fc20c8a2c6efe7fdedac1ceb340c22fe95efc.tar.gz chromium_src-fb0fc20c8a2c6efe7fdedac1ceb340c22fe95efc.tar.bz2 |
Rename namespace 'gdata' to 'google_apis', since it is now now irrelevant.
BUG=155469
TBR=estade@chromium.org
Review URL: https://codereview.chromium.org/11180002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@163248 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/chromeos/drive/drive_task_executor.cc')
-rw-r--r-- | chrome/browser/chromeos/drive/drive_task_executor.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/chromeos/drive/drive_task_executor.cc b/chrome/browser/chromeos/drive/drive_task_executor.cc index 41e367b..388c0cb 100644 --- a/chrome/browser/chromeos/drive/drive_task_executor.cc +++ b/chrome/browser/chromeos/drive/drive_task_executor.cc @@ -114,7 +114,7 @@ void DriveTaskExecutor::OnFileEntryFetched( void DriveTaskExecutor::OnAppAuthorized( const std::string& resource_id, - gdata::GDataErrorCode error, + google_apis::GDataErrorCode error, scoped_ptr<base::Value> feed_data) { DCHECK(content::BrowserThread::CurrentlyOn(content::BrowserThread::UI)); @@ -125,7 +125,7 @@ void DriveTaskExecutor::OnAppAuthorized( DriveSystemService* system_service = DriveSystemServiceFactory::GetForProfile(profile()); - if (!system_service || error != gdata::HTTP_SUCCESS) { + if (!system_service || error != google_apis::HTTP_SUCCESS) { Done(false); return; } |