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

Unified Diff: chrome/browser/chromeos/file_system_provider/operations/create_file_unittest.cc

Issue 1221093002: Add support for refreshing contents of providers which don't support watchers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed tests. Created 5 years, 5 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/file_system_provider/operations/create_file_unittest.cc
diff --git a/chrome/browser/chromeos/file_system_provider/operations/create_file_unittest.cc b/chrome/browser/chromeos/file_system_provider/operations/create_file_unittest.cc
index 3e40b900c0e17d50475288b8c7c2d7ea93df4c0c..32d59d172bed37037c240c67ab912dfd6363135e 100644
--- a/chrome/browser/chromeos/file_system_provider/operations/create_file_unittest.cc
+++ b/chrome/browser/chromeos/file_system_provider/operations/create_file_unittest.cc
@@ -43,7 +43,7 @@ class FileSystemProviderOperationsCreateFileTest : public testing::Test {
mount_options.writable = true;
file_system_info_ = ProvidedFileSystemInfo(
kExtensionId, mount_options, base::FilePath(), false /* configurable */,
- extensions::SOURCE_FILE);
+ true /* watchable */, extensions::SOURCE_FILE);
}
ProvidedFileSystemInfo file_system_info_;
@@ -102,7 +102,7 @@ TEST_F(FileSystemProviderOperationsCreateFileTest, Execute_ReadOnly) {
const ProvidedFileSystemInfo read_only_file_system_info(
kExtensionId, MountOptions(kFileSystemId, "" /* display_name */),
base::FilePath() /* mount_path */, false /* configurable */,
- extensions::SOURCE_FILE);
+ true /* watchable */, extensions::SOURCE_FILE);
CreateFile create_file(NULL, read_only_file_system_info,
base::FilePath(kFilePath),

Powered by Google App Engine
This is Rietveld 408576698