| OLD | NEW |
| 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 #include <map> | 5 #include <map> |
| 6 #include <set> | 6 #include <set> |
| 7 #include <string> | 7 #include <string> |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "build/build_config.h" | 10 #include "build/build_config.h" |
| (...skipping 1007 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1018 FilePath /* root_path */) | 1018 FilePath /* root_path */) |
| 1019 | 1019 |
| 1020 // WebFileSystem response messages. | 1020 // WebFileSystem response messages. |
| 1021 IPC_MESSAGE_CONTROL1(ViewMsg_FileSystem_DidSucceed, | 1021 IPC_MESSAGE_CONTROL1(ViewMsg_FileSystem_DidSucceed, |
| 1022 int /* request_id */) | 1022 int /* request_id */) |
| 1023 IPC_MESSAGE_CONTROL2(ViewMsg_FileSystem_DidReadMetadata, | 1023 IPC_MESSAGE_CONTROL2(ViewMsg_FileSystem_DidReadMetadata, |
| 1024 int /* request_id */, | 1024 int /* request_id */, |
| 1025 base::PlatformFileInfo) | 1025 base::PlatformFileInfo) |
| 1026 IPC_MESSAGE_CONTROL3(ViewMsg_FileSystem_DidReadDirectory, | 1026 IPC_MESSAGE_CONTROL3(ViewMsg_FileSystem_DidReadDirectory, |
| 1027 int /* request_id */, | 1027 int /* request_id */, |
| 1028 std::vector<base::FileUtilProxy::Entry> /* entries */, | 1028 std::vector<base::FileUtilProxyBase::Entry> /* entries */, |
| 1029 bool /* has_more */) | 1029 bool /* has_more */) |
| 1030 | 1030 |
| 1031 IPC_MESSAGE_CONTROL3(ViewMsg_FileSystem_DidWrite, | 1031 IPC_MESSAGE_CONTROL3(ViewMsg_FileSystem_DidWrite, |
| 1032 int /* request_id */, | 1032 int /* request_id */, |
| 1033 int64 /* byte count */, | 1033 int64 /* byte count */, |
| 1034 bool /* complete */) | 1034 bool /* complete */) |
| 1035 IPC_MESSAGE_CONTROL2(ViewMsg_FileSystem_DidFail, | 1035 IPC_MESSAGE_CONTROL2(ViewMsg_FileSystem_DidFail, |
| 1036 int /* request_id */, | 1036 int /* request_id */, |
| 1037 base::PlatformFileError /* error_code */) | 1037 base::PlatformFileError /* error_code */) |
| 1038 | 1038 |
| (...skipping 1491 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2530 // The currently displayed PDF has an unsupported feature. | 2530 // The currently displayed PDF has an unsupported feature. |
| 2531 IPC_MESSAGE_ROUTED0(ViewHostMsg_PDFHasUnsupportedFeature) | 2531 IPC_MESSAGE_ROUTED0(ViewHostMsg_PDFHasUnsupportedFeature) |
| 2532 | 2532 |
| 2533 // JavaScript related messages ----------------------------------------------- | 2533 // JavaScript related messages ----------------------------------------------- |
| 2534 | 2534 |
| 2535 // Notify the JavaScript engine in the render to change its parameters | 2535 // Notify the JavaScript engine in the render to change its parameters |
| 2536 // while performing stress testing. | 2536 // while performing stress testing. |
| 2537 IPC_MESSAGE_ROUTED2(ViewMsg_JavaScriptStressTestControl, | 2537 IPC_MESSAGE_ROUTED2(ViewMsg_JavaScriptStressTestControl, |
| 2538 int /* cmd */, | 2538 int /* cmd */, |
| 2539 int /* param */) | 2539 int /* param */) |
| OLD | NEW |