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

Side by Side Diff: content/common/fileapi/webfilesystem_callback_dispatcher.h

Issue 9558006: Rename content/{common,browser}/file_system to fileapi and move blob stuff into it. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 8 years, 9 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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 CONTENT_COMMON_FILE_SYSTEM_WEBFILESYSTEM_CALLBACK_DISPATCHER_H_ 5 #ifndef CONTENT_COMMON_FILEAPI_WEBFILESYSTEM_CALLBACK_DISPATCHER_H_
6 #define CONTENT_COMMON_FILE_SYSTEM_WEBFILESYSTEM_CALLBACK_DISPATCHER_H_ 6 #define CONTENT_COMMON_FILEAPI_WEBFILESYSTEM_CALLBACK_DISPATCHER_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/platform_file.h" 9 #include "base/platform_file.h"
10 #include "webkit/fileapi/file_system_callback_dispatcher.h" 10 #include "webkit/fileapi/file_system_callback_dispatcher.h"
11 11
12 class GURL; 12 class GURL;
13 13
14 namespace WebKit { 14 namespace WebKit {
15 class WebFileSystemCallbacks; 15 class WebFileSystemCallbacks;
16 } 16 }
(...skipping 14 matching lines...) Expand all
31 bool has_more) OVERRIDE; 31 bool has_more) OVERRIDE;
32 virtual void DidOpenFileSystem(const std::string&, 32 virtual void DidOpenFileSystem(const std::string&,
33 const GURL&) OVERRIDE; 33 const GURL&) OVERRIDE;
34 virtual void DidFail(base::PlatformFileError) OVERRIDE; 34 virtual void DidFail(base::PlatformFileError) OVERRIDE;
35 virtual void DidWrite(int64 bytes, bool complete) OVERRIDE; 35 virtual void DidWrite(int64 bytes, bool complete) OVERRIDE;
36 36
37 private: 37 private:
38 WebKit::WebFileSystemCallbacks* callbacks_; 38 WebKit::WebFileSystemCallbacks* callbacks_;
39 }; 39 };
40 40
41 #endif // CONTENT_COMMON_FILE_SYSTEM_WEBFILESYSTEM_CALLBACK_DISPATCHER_H_ 41 #endif // CONTENT_COMMON_FILEAPI_WEBFILESYSTEM_CALLBACK_DISPATCHER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698