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

Unified Diff: chrome/browser/sync_file_system/drive_backend/metadata_database.proto

Issue 22813002: [SyncFS] Rename kind() to file_kind (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 4 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/sync_file_system/drive_backend/metadata_database.proto
diff --git a/chrome/browser/sync_file_system/drive_backend/metadata_database.proto b/chrome/browser/sync_file_system/drive_backend/metadata_database.proto
index fbdfa2cdfa2c40d543a63f4bb09b90e8c09dbb38..736f357e07a5973288b0218a6858a9e5592cac92 100644
--- a/chrome/browser/sync_file_system/drive_backend/metadata_database.proto
+++ b/chrome/browser/sync_file_system/drive_backend/metadata_database.proto
@@ -11,9 +11,9 @@ option optimize_for = LITE_RUNTIME;
package sync_file_system.drive_backend;
enum FileKind {
- KIND_UNSUPPORTED = 0;
- KIND_FILE = 1;
- KIND_FOLDER = 2;
+ FILE_KIND_UNSUPPORTED = 0;
+ FILE_KIND_FILE = 1;
+ FILE_KIND_FOLDER = 2;
}
message ServiceMetadata {
@@ -29,7 +29,7 @@ message FileDetails {
repeated string parent_folder_ids = 1;
optional string title = 2;
- optional FileKind kind = 3;
+ optional FileKind file_kind = 3;
optional string md5 = 4;
optional string etag = 5;

Powered by Google App Engine
This is Rietveld 408576698