| Index: chrome/browser/sync_file_system/local/canned_syncable_file_system.h | 
| diff --git a/chrome/browser/sync_file_system/local/canned_syncable_file_system.h b/chrome/browser/sync_file_system/local/canned_syncable_file_system.h | 
| index a32dd34582c4874eba5a511eaf37e8d89a097ff3..c3360bcb03bcb7b63572c276c905347af929b14a 100644 | 
| --- a/chrome/browser/sync_file_system/local/canned_syncable_file_system.h | 
| +++ b/chrome/browser/sync_file_system/local/canned_syncable_file_system.h | 
| @@ -67,6 +67,11 @@ class CannedSyncableFileSystem | 
| typedef base::Callback<void(int64)> WriteCallback; | 
| typedef fileapi::FileSystemOperation::FileEntryList FileEntryList; | 
|  | 
| +  enum QuotaMode { | 
| +    QUOTA_ENABLED, | 
| +    QUOTA_DISABLED, | 
| +  }; | 
| + | 
| CannedSyncableFileSystem(const GURL& origin, | 
| leveldb::Env* env_override, | 
| base::SingleThreadTaskRunner* io_task_runner, | 
| @@ -74,7 +79,7 @@ class CannedSyncableFileSystem | 
| virtual ~CannedSyncableFileSystem(); | 
|  | 
| // SetUp must be called before using this instance. | 
| -  void SetUp(); | 
| +  void SetUp(QuotaMode quota_mode); | 
|  | 
| // TearDown must be called before destructing this instance. | 
| void TearDown(); | 
|  |