| Index: webkit/fileapi/sandbox_mount_point_provider.cc
|
| diff --git a/webkit/fileapi/sandbox_mount_point_provider.cc b/webkit/fileapi/sandbox_mount_point_provider.cc
|
| index b5341e96f8afc5ef0617de0af44ed0b00071aafa..228305b0ce016299a397a9cc1ac8b1719823bbbe 100644
|
| --- a/webkit/fileapi/sandbox_mount_point_provider.cc
|
| +++ b/webkit/fileapi/sandbox_mount_point_provider.cc
|
| @@ -64,6 +64,7 @@ enum FileSystemError {
|
|
|
| const char kTemporaryOriginsCountLabel[] = "FileSystem.TemporaryOriginsCount";
|
| const char kPersistentOriginsCountLabel[] = "FileSystem.PersistentOriginsCount";
|
| +const char kSyncableOriginsCountLabel[] = "FileSystem.SyncableOriginsCount";
|
|
|
| // Restricted names.
|
| // http://dev.w3.org/2009/dap/file-system/file-dir-sys.html#naming-restrictions
|
| @@ -433,6 +434,9 @@ void SandboxMountPointProvider::GetOriginsForTypeOnFileThread(
|
| case kFileSystemTypePersistent:
|
| UMA_HISTOGRAM_COUNTS(kPersistentOriginsCountLabel, origins->size());
|
| break;
|
| + case kFileSystemTypeSyncable:
|
| + UMA_HISTOGRAM_COUNTS(kSyncableOriginsCountLabel, origins->size());
|
| + break;
|
| default:
|
| break;
|
| }
|
|
|