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 // Multiply-included message file, so no include guard. | 5 // Multiply-included message file, so no include guard. |
6 | 6 |
7 #include <string> | 7 #include <string> |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "content/common/common_param_traits.h" | 10 #include "content/common/common_param_traits.h" |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
55 IPC_SYNC_MESSAGE_CONTROL2_3(ClipboardHostMsg_ReadData, | 55 IPC_SYNC_MESSAGE_CONTROL2_3(ClipboardHostMsg_ReadData, |
56 ui::Clipboard::Buffer /* buffer */, | 56 ui::Clipboard::Buffer /* buffer */, |
57 string16 /* type */, | 57 string16 /* type */, |
58 bool /* succeeded */, | 58 bool /* succeeded */, |
59 string16 /* data */, | 59 string16 /* data */, |
60 string16 /* metadata */) | 60 string16 /* metadata */) |
61 IPC_SYNC_MESSAGE_CONTROL1_2(ClipboardHostMsg_ReadFilenames, | 61 IPC_SYNC_MESSAGE_CONTROL1_2(ClipboardHostMsg_ReadFilenames, |
62 ui::Clipboard::Buffer /* buffer */, | 62 ui::Clipboard::Buffer /* buffer */, |
63 bool /* result */, | 63 bool /* result */, |
64 std::vector<string16> /* filenames */) | 64 std::vector<string16> /* filenames */) |
OLD | NEW |