| OLD | NEW |
| 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 #include <map> | 5 #include <map> |
| 6 #include <string> | 6 #include <string> |
| 7 #include <vector> | 7 #include <vector> |
| 8 | 8 |
| 9 #include "build/build_config.h" | 9 #include "build/build_config.h" |
| 10 | 10 |
| (...skipping 2655 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2666 | 2666 |
| 2667 // Query the file's info. | 2667 // Query the file's info. |
| 2668 IPC_SYNC_MESSAGE_CONTROL1_2(ViewHostMsg_PepperQueryFile, | 2668 IPC_SYNC_MESSAGE_CONTROL1_2(ViewHostMsg_PepperQueryFile, |
| 2669 FilePath /* path */, | 2669 FilePath /* path */, |
| 2670 base::PlatformFileInfo, /* info */ | 2670 base::PlatformFileInfo, /* info */ |
| 2671 base::PlatformFileError /* error_code */) | 2671 base::PlatformFileError /* error_code */) |
| 2672 | 2672 |
| 2673 // Get the directory's contents. | 2673 // Get the directory's contents. |
| 2674 IPC_SYNC_MESSAGE_CONTROL1_2(ViewHostMsg_PepperGetDirContents, | 2674 IPC_SYNC_MESSAGE_CONTROL1_2(ViewHostMsg_PepperGetDirContents, |
| 2675 FilePath /* path */, | 2675 FilePath /* path */, |
| 2676 PepperDirContents, /* contents */ | 2676 webkit::plugins::ppapi::DirContents, /* contents */ |
| 2677 base::PlatformFileError /* error_code */) | 2677 base::PlatformFileError /* error_code */) |
| OLD | NEW |