Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(9737)

Unified Diff: chrome/browser/chromeos/extensions/external_filesystem_apitest.cc

Issue 11106007: drive: Rename 'gdata' namespace to 'drive' in chrome/browser/chromeos/drive (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/chromeos/extensions/external_filesystem_apitest.cc
diff --git a/chrome/browser/chromeos/extensions/external_filesystem_apitest.cc b/chrome/browser/chromeos/extensions/external_filesystem_apitest.cc
index 640fc1b153c24ea15d12dfee21b4dfcdca6925f3..0d6df25c8d2ef5aea1e2bc1eec0b024f1c47d7ca 100644
--- a/chrome/browser/chromeos/extensions/external_filesystem_apitest.cc
+++ b/chrome/browser/chromeos/extensions/external_filesystem_apitest.cc
@@ -253,13 +253,13 @@ class RemoteFileSystemExtensionApiTest : public ExtensionApiTest {
FilePath tmp_dir_path;
PathService::Get(base::DIR_TEMP, &tmp_dir_path);
ASSERT_TRUE(test_cache_root_.CreateUniqueTempDirUnderPath(tmp_dir_path));
- gdata::DriveSystemServiceFactory::set_cache_root_for_test(
+ drive::DriveSystemServiceFactory::set_cache_root_for_test(
test_cache_root_.path().value());
- mock_drive_service_ = new gdata::MockDriveService();
+ mock_drive_service_ = new drive::MockDriveService();
// |mock_drive_service_| will eventually get owned by a system service.
- gdata::DriveSystemServiceFactory::set_drive_service_for_test(
+ drive::DriveSystemServiceFactory::set_drive_service_for_test(
mock_drive_service_);
ExtensionApiTest::SetUp();
@@ -267,14 +267,14 @@ class RemoteFileSystemExtensionApiTest : public ExtensionApiTest {
virtual void TearDown() OVERRIDE {
// Let's make sure we don't leak documents service.
- gdata::DriveSystemServiceFactory::set_drive_service_for_test(NULL);
- gdata::DriveSystemServiceFactory::set_cache_root_for_test(std::string());
+ drive::DriveSystemServiceFactory::set_drive_service_for_test(NULL);
+ drive::DriveSystemServiceFactory::set_cache_root_for_test(std::string());
ExtensionApiTest::TearDown();
}
protected:
ScopedTempDir test_cache_root_;
- gdata::MockDriveService* mock_drive_service_;
+ drive::MockDriveService* mock_drive_service_;
};
IN_PROC_BROWSER_TEST_F(FileSystemExtensionApiTest, LocalFileSystem) {

Powered by Google App Engine
This is Rietveld 408576698