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

Unified Diff: chrome/browser/chromeos/gdata/gdata_sync_client_unittest.cc

Issue 10198003: gdata: Get rid of GetGDataCacheTmpDirectory() and friends (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix infinite recursion Created 8 years, 8 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/gdata/gdata_sync_client_unittest.cc
diff --git a/chrome/browser/chromeos/gdata/gdata_sync_client_unittest.cc b/chrome/browser/chromeos/gdata/gdata_sync_client_unittest.cc
index 871492679a0336fea5bbc6fd7def7038ecba897e..75e34b438f80cbbc3d28e5a46a36910d722ab11e 100644
--- a/chrome/browser/chromeos/gdata/gdata_sync_client_unittest.cc
+++ b/chrome/browser/chromeos/gdata/gdata_sync_client_unittest.cc
@@ -147,7 +147,8 @@ ACTION_P4(MockGetFileByResourceId, error, local_path, mime_type, file_type) {
TEST_F(GDataSyncClientTest, StartInitialScan) {
SetUpTestFiles();
- EXPECT_CALL(*mock_file_system_, GetGDataCachePinnedDirectory())
+ EXPECT_CALL(*mock_file_system_, GetCacheDirectoryPath(
+ GDataRootDirectory::CACHE_TYPE_PINNED))
.WillOnce(Return(temp_dir_.path()));
sync_client_->StartInitialScan(

Powered by Google App Engine
This is Rietveld 408576698