summaryrefslogtreecommitdiffstats
path: root/chrome/browser/chromeos/drive/drive_app_registry_unittest.cc
diff options
context:
space:
mode:
authorsatorux@chromium.org <satorux@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-06-20 06:39:31 +0000
committersatorux@chromium.org <satorux@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-06-20 06:39:31 +0000
commite50af765857d056ab2d1a1c40b31c219788b342f (patch)
tree177d206d0fc981ab752026653cdf573f0dd2c690 /chrome/browser/chromeos/drive/drive_app_registry_unittest.cc
parentf5fe646ecebc854d7cb11134757411aa0630a7ef (diff)
downloadchromium_src-e50af765857d056ab2d1a1c40b31c219788b342f.zip
chromium_src-e50af765857d056ab2d1a1c40b31c219788b342f.tar.gz
chromium_src-e50af765857d056ab2d1a1c40b31c219788b342f.tar.bz2
drive: Rename namespace in c/b/drive from google_apis to drive
'google_apis' is no longer the right name, as the code is moved to chrome/browser/drive. 'using google_apis::Whatever' is aggresively used in .cc files in chrome/browser/drive to minimize diffs. BUG=244325 TEST=none R=kinaba@chromium.org, kinuko@chromium.org Review URL: https://codereview.chromium.org/17479002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@207331 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/chromeos/drive/drive_app_registry_unittest.cc')
-rw-r--r--chrome/browser/chromeos/drive/drive_app_registry_unittest.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/chromeos/drive/drive_app_registry_unittest.cc b/chrome/browser/chromeos/drive/drive_app_registry_unittest.cc
index f8bea09..65c3055 100644
--- a/chrome/browser/chromeos/drive/drive_app_registry_unittest.cc
+++ b/chrome/browser/chromeos/drive/drive_app_registry_unittest.cc
@@ -21,7 +21,7 @@ class DriveAppRegistryTest : public testing::Test {
profile_.reset(new TestingProfile);
// The fake object will be manually deleted in TearDown().
- fake_drive_service_.reset(new google_apis::FakeDriveService);
+ fake_drive_service_.reset(new FakeDriveService);
fake_drive_service_->LoadAppListForDriveApi("chromeos/drive/applist.json");
scheduler_.reset(
@@ -58,7 +58,7 @@ class DriveAppRegistryTest : public testing::Test {
content::TestBrowserThreadBundle thread_bundle_;
scoped_ptr<TestingProfile> profile_;
- scoped_ptr<google_apis::FakeDriveService> fake_drive_service_;
+ scoped_ptr<FakeDriveService> fake_drive_service_;
scoped_ptr<JobScheduler> scheduler_;
scoped_ptr<DriveAppRegistry> web_apps_registry_;
};