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

Side by Side Diff: webkit/fileapi/syncable/sync_callbacks.h

Issue 11187021: Add RemoteFileSyncService interface (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase & fix comment 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
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef WEBKIT_FILEAPI_SYNCABLE_SYNC_CALLBACKS_H_
6 #define WEBKIT_FILEAPI_SYNCABLE_SYNC_CALLBACKS_H_
7
8 #include "base/callback_forward.h"
9 #include "webkit/fileapi/syncable/sync_status_code.h"
10
11 namespace fileapi {
12 class FileSystemURL;
13
14 typedef base::Callback<void(SyncStatusCode status)> StatusCallback;
15 typedef base::Callback<void(SyncStatusCode, const FileSystemURL& url)>
16 SyncCompletionCallback;
17 } // namespace sync_file_system
Lei Zhang 2012/10/24 05:53:19 nit: wrong namespace in the comment
tzik 2012/10/24 06:43:11 Done.
18
19 #endif // WEBKIT_FILEAPI_SYNCABLE_SYNC_CALLBACKS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698