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

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

Issue 11265002: Add sync_callbacks.h for Sync FileSystem callbacks. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 1 month 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
« no previous file with comments | « no previous file | webkit/fileapi/webkit_fileapi.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
kinuko 2012/10/24 03:16:54 nit: please put empty lines after line 11 and befo
18
19 #endif // WEBKIT_FILEAPI_SYNCABLE_SYNC_CALLBACKS_H_
OLDNEW
« no previous file with comments | « no previous file | webkit/fileapi/webkit_fileapi.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698