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

Side by Side Diff: chrome/common/file_system/file_system_dispatcher.h

Issue 6286038: Add initial code to do filename munging in the FileSystem.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 10 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) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 CHROME_COMMON_FILE_SYSTEM_FILE_SYSTEM_DISPATCHER_H_ 5 #ifndef CHROME_COMMON_FILE_SYSTEM_FILE_SYSTEM_DISPATCHER_H_
6 #define CHROME_COMMON_FILE_SYSTEM_FILE_SYSTEM_DISPATCHER_H_ 6 #define CHROME_COMMON_FILE_SYSTEM_FILE_SYSTEM_DISPATCHER_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 bool accepted, 82 bool accepted,
83 const std::string& name, 83 const std::string& name,
84 const FilePath& root_path); 84 const FilePath& root_path);
85 85
86 // Message handlers for regular file system operations. 86 // Message handlers for regular file system operations.
87 void DidSucceed(int request_id); 87 void DidSucceed(int request_id);
88 void DidReadMetadata(int request_id, 88 void DidReadMetadata(int request_id,
89 const base::PlatformFileInfo& file_info); 89 const base::PlatformFileInfo& file_info);
90 void DidReadDirectory( 90 void DidReadDirectory(
91 int request_id, 91 int request_id,
92 const std::vector<base::FileUtilProxy::Entry>& entries, 92 const std::vector<base::FileUtilProxyBase::Entry>& entries,
93 bool has_more); 93 bool has_more);
94 void DidFail(int request_id, base::PlatformFileError error_code); 94 void DidFail(int request_id, base::PlatformFileError error_code);
95 void DidWrite(int request_id, int64 bytes, bool complete); 95 void DidWrite(int request_id, int64 bytes, bool complete);
96 96
97 IDMap<fileapi::FileSystemCallbackDispatcher, IDMapOwnPointer> dispatchers_; 97 IDMap<fileapi::FileSystemCallbackDispatcher, IDMapOwnPointer> dispatchers_;
98 98
99 DISALLOW_COPY_AND_ASSIGN(FileSystemDispatcher); 99 DISALLOW_COPY_AND_ASSIGN(FileSystemDispatcher);
100 }; 100 };
101 101
102 #endif // CHROME_COMMON_FILE_SYSTEM_FILE_SYSTEM_DISPATCHER_H_ 102 #endif // CHROME_COMMON_FILE_SYSTEM_FILE_SYSTEM_DISPATCHER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698