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

Side by Side Diff: webkit/browser/fileapi/syncable/sync_action.h

Issue 14895013: Move webkit/fileapi/file_system_mount_point_provider.h to webkit/browser/fileapi (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 7 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 #ifndef WEBKIT_FILEAPI_SYNCABLE_SYNC_ACTION_H_ 5 #ifndef WEBKIT_FILEAPI_SYNCABLE_SYNC_ACTION_H_
6 #define WEBKIT_FILEAPI_SYNCABLE_SYNC_ACTION_H_ 6 #define WEBKIT_FILEAPI_SYNCABLE_SYNC_ACTION_H_
7 7
8 namespace sync_file_system { 8 namespace sync_file_system {
9 9
10 enum SyncAction { 10 enum SyncAction {
11 // Indicates no action has been made. 11 // Indicates no action has been made.
12 SYNC_ACTION_NONE, 12 SYNC_ACTION_NONE,
13 13
14 // Indicates a new file or directory has been added. 14 // Indicates a new file or directory has been added.
15 SYNC_ACTION_ADDED, 15 SYNC_ACTION_ADDED,
16 16
17 // Indicates an existing file or directory has been updated. 17 // Indicates an existing file or directory has been updated.
18 SYNC_ACTION_UPDATED, 18 SYNC_ACTION_UPDATED,
19 19
20 // Indicates a file or directory has been deleted. 20 // Indicates a file or directory has been deleted.
21 SYNC_ACTION_DELETED, 21 SYNC_ACTION_DELETED,
22 }; 22 };
23 23
24 } // namespace fileapi 24 } // namespace fileapi
25 25
26 #endif // WEBKIT_FILEAPI_SYNCABLE_SYNC_ACTION_H_ 26 #endif // WEBKIT_FILEAPI_SYNCABLE_SYNC_ACTION_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698