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

Side by Side Diff: chrome/browser/chromeos/drive/drive.proto

Issue 11106007: drive: Rename 'gdata' namespace to 'drive' in chrome/browser/chromeos/drive (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 8 years, 2 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 // 4 //
5 // Protocol buffer definitions for serializing Drive files and directories. 5 // Protocol buffer definitions for serializing Drive files and directories.
6 6
7 syntax = "proto2"; 7 syntax = "proto2";
8 8
9 option optimize_for = LITE_RUNTIME; 9 option optimize_for = LITE_RUNTIME;
10 10
11 package gdata; 11 package drive;
12 12
13 // Represents base::PlatformFileInfo. 13 // Represents base::PlatformFileInfo.
14 message PlatformFileInfoProto { 14 message PlatformFileInfoProto {
15 optional int64 size = 1; 15 optional int64 size = 1;
16 optional bool is_directory = 2; 16 optional bool is_directory = 2;
17 optional bool is_symbolic_link = 3; 17 optional bool is_symbolic_link = 3;
18 optional int64 last_modified = 4; 18 optional int64 last_modified = 4;
19 optional int64 last_accessed = 5; 19 optional int64 last_accessed = 5;
20 optional int64 creation_time = 6; 20 optional int64 creation_time = 6;
21 } 21 }
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 112
113 // True if the file is a mounted archive file. 113 // True if the file is a mounted archive file.
114 optional bool is_mounted = 5; 114 optional bool is_mounted = 5;
115 115
116 // True if the file is in the persistent directory. 116 // True if the file is in the persistent directory.
117 optional bool is_persistent = 6; 117 optional bool is_persistent = 6;
118 118
119 // When adding a new state, be sure to update TestDriveCacheState and test 119 // When adding a new state, be sure to update TestDriveCacheState and test
120 // functions defined in drive_test_util.cc. 120 // functions defined in drive_test_util.cc.
121 } 121 }
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/drive/document_entry_conversion_unittest.cc ('k') | chrome/browser/chromeos/drive/drive_api_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698