Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(13)

Side by Side Diff: content/shell/common/layout_test/layout_test_messages.h

Issue 1125133005: bluetooth: Move testing IPC from BluetoothDispatcher to BlinkTestRunner (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698