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

Side by Side Diff: content/renderer/pepper/null_file_system_callback_dispatcher.h

Issue 14472008: [FileAPI] Add file open ID and close callback (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase 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) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 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_RENDERER_PEPPER_NULL_FILE_SYSTEM_CALLBACK_DISPATCHER_H_ 5 #ifndef CONTENT_RENDERER_PEPPER_NULL_FILE_SYSTEM_CALLBACK_DISPATCHER_H_
6 #define CONTENT_RENDERER_PEPPER_NULL_FILE_SYSTEM_CALLBACK_DISPATCHER_H_ 6 #define CONTENT_RENDERER_PEPPER_NULL_FILE_SYSTEM_CALLBACK_DISPATCHER_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 24 matching lines...) Expand all
35 virtual void DidCreateSnapshotFile( 35 virtual void DidCreateSnapshotFile(
36 const base::PlatformFileInfo& file_info, 36 const base::PlatformFileInfo& file_info,
37 const base::FilePath& platform_path) OVERRIDE; 37 const base::FilePath& platform_path) OVERRIDE;
38 virtual void DidReadDirectory( 38 virtual void DidReadDirectory(
39 const std::vector<base::FileUtilProxy::Entry>& entries, 39 const std::vector<base::FileUtilProxy::Entry>& entries,
40 bool has_more) OVERRIDE; 40 bool has_more) OVERRIDE;
41 virtual void DidOpenFileSystem(const std::string& name, 41 virtual void DidOpenFileSystem(const std::string& name,
42 const GURL& root) OVERRIDE; 42 const GURL& root) OVERRIDE;
43 virtual void DidWrite(int64 bytes, bool complete) OVERRIDE; 43 virtual void DidWrite(int64 bytes, bool complete) OVERRIDE;
44 virtual void DidOpenFile(base::PlatformFile file, 44 virtual void DidOpenFile(base::PlatformFile file,
45 int file_open_id,
45 quota::QuotaLimitType quota_policy) OVERRIDE; 46 quota::QuotaLimitType quota_policy) OVERRIDE;
46 virtual void DidFail(base::PlatformFileError platform_error) OVERRIDE; 47 virtual void DidFail(base::PlatformFileError platform_error) OVERRIDE;
47 48
48 private: 49 private:
49 DISALLOW_COPY_AND_ASSIGN(NullFileSystemCallbackDispatcher); 50 DISALLOW_COPY_AND_ASSIGN(NullFileSystemCallbackDispatcher);
50 }; 51 };
51 52
52 } // namespace content 53 } // namespace content
53 54
54 #endif // CONTENT_RENDERER_PEPPER_NULL_FILE_SYSTEM_CALLBACK_DISPATCHER_H_ 55 #endif // CONTENT_RENDERER_PEPPER_NULL_FILE_SYSTEM_CALLBACK_DISPATCHER_H_
OLDNEW
« no previous file with comments | « content/common/fileapi/file_system_messages.h ('k') | content/renderer/pepper/null_file_system_callback_dispatcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698