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

Unified Diff: chrome/test/data/extensions/api_test/file_manager_browsertest/test_cases.js

Issue 14577013: Files.app: Bring back the offline feature. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 7 years, 7 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
« no previous file with comments | « chrome/browser/resources/file_manager/js/directory_model.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/data/extensions/api_test/file_manager_browsertest/test_cases.js
diff --git a/chrome/test/data/extensions/api_test/file_manager_browsertest/test_cases.js b/chrome/test/data/extensions/api_test/file_manager_browsertest/test_cases.js
index b4f5352c4a833d57def58fec4c840043804b0c91..1f5e5057aeee159b9c16e009f5839e87e413eb34 100644
--- a/chrome/test/data/extensions/api_test/file_manager_browsertest/test_cases.js
+++ b/chrome/test/data/extensions/api_test/file_manager_browsertest/test_cases.js
@@ -469,9 +469,12 @@ testcase.intermediate.copyBetweenVolumes = function(targetFile,
break;
}
}
- // File size can not be obtained on drive_shared_with_me volume.
+ // File size can not be obtained on drive_shared_with_me volume and
+ // drive_offline.
var ignoreSize = srcName == 'drive_shared_with_me' ||
- dstName == 'drive_shared_with_me';
+ dstName == 'drive_shared_with_me' ||
+ srcName == 'drive_offline' ||
+ dstName == 'drive_offline';
for (var i = 0; i < actualFilesAfter.length; i++) {
if (actualFilesAfter[i][0] == copiedItem[0] &&
(ignoreSize || actualFilesAfter[i][1] == copiedItem[1]) &&
« no previous file with comments | « chrome/browser/resources/file_manager/js/directory_model.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698