OLD | NEW |
---|---|
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 file, no traditional include guard. | 5 // Multiply-included file, no traditional include guard. |
6 #include <string> | 6 #include <string> |
7 #include <vector> | 7 #include <vector> |
8 | 8 |
9 #include "content/public/common/common_param_traits.h" | 9 #include "content/public/common/common_param_traits.h" |
10 #include "content/public/common/permission_status.mojom.h" | 10 #include "content/public/common/permission_status.mojom.h" |
(...skipping 20 matching lines...) Expand all Loading... | |
31 std::string /* title */) | 31 std::string /* title */) |
32 IPC_MESSAGE_ROUTED1(LayoutTestHostMsg_AcceptAllCookies, | 32 IPC_MESSAGE_ROUTED1(LayoutTestHostMsg_AcceptAllCookies, |
33 bool /* accept */) | 33 bool /* accept */) |
34 IPC_MESSAGE_ROUTED0(LayoutTestHostMsg_DeleteAllCookies) | 34 IPC_MESSAGE_ROUTED0(LayoutTestHostMsg_DeleteAllCookies) |
35 IPC_MESSAGE_ROUTED4(LayoutTestHostMsg_SetPermission, | 35 IPC_MESSAGE_ROUTED4(LayoutTestHostMsg_SetPermission, |
36 std::string /* name */, | 36 std::string /* name */, |
37 content::PermissionStatus /* status */, | 37 content::PermissionStatus /* status */, |
38 GURL /* origin */, | 38 GURL /* origin */, |
39 GURL /* embedding_origin */ ) | 39 GURL /* embedding_origin */ ) |
40 IPC_MESSAGE_ROUTED0(LayoutTestHostMsg_ResetPermissions) | 40 IPC_MESSAGE_ROUTED0(LayoutTestHostMsg_ResetPermissions) |
41 | |
scheib
2015/05/16 01:00:35
Stay consistent with above, no blank line.
ortuno
2015/05/18 17:40:17
Done.
| |
42 IPC_MESSAGE_CONTROL1(LayoutTestHostMsg_SetBluetoothAdapter, | |
43 std::string /* name */) | |
OLD | NEW |