| Index: chrome/common/render_messages_params.h
|
| ===================================================================
|
| --- chrome/common/render_messages_params.h (revision 57922)
|
| +++ chrome/common/render_messages_params.h (working copy)
|
| @@ -845,27 +845,6 @@
|
| int64 requested_size;
|
| };
|
|
|
| -struct ViewMsg_FileSystem_DidReadDirectory_Params {
|
| - // The response should have this id.
|
| - int request_id;
|
| -
|
| - // TODO(kinuko): replace this with file_util_proxy's entry structure
|
| - // once it's defined.
|
| - struct Entry {
|
| - // Name of the entry.
|
| - FilePath name;
|
| -
|
| - // Indicates if the entry is directory or not.
|
| - bool is_directory;
|
| - };
|
| -
|
| - // A vector of directory entries.
|
| - std::vector<Entry> entries;
|
| -
|
| - // Indicates if there will be more entries.
|
| - bool has_more;
|
| -};
|
| -
|
| namespace IPC {
|
|
|
| class Message;
|
| @@ -1119,22 +1098,6 @@
|
| static void Log(const param_type& p, std::string* l);
|
| };
|
|
|
| -template <>
|
| -struct ParamTraits<ViewMsg_FileSystem_DidReadDirectory_Params> {
|
| - typedef ViewMsg_FileSystem_DidReadDirectory_Params param_type;
|
| - static void Write(Message* m, const param_type& p);
|
| - static bool Read(const Message* m, void** iter, param_type* p);
|
| - static void Log(const param_type& p, std::string* l);
|
| -};
|
| -
|
| -template <>
|
| -struct ParamTraits<ViewMsg_FileSystem_DidReadDirectory_Params::Entry> {
|
| - typedef ViewMsg_FileSystem_DidReadDirectory_Params::Entry param_type;
|
| - static void Write(Message* m, const param_type& p);
|
| - static bool Read(const Message* m, void** iter, param_type* p);
|
| - static void Log(const param_type& p, std::string* l);
|
| -};
|
| -
|
| } // namespace IPC
|
|
|
| #endif // CHROME_COMMON_RENDER_MESSAGES_PARAMS_H_
|
|
|