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

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

Issue 677673002: Move LayoutTestMessageFilter-related IPCs to their own message file. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@n-land-cs-show
Patch Set: try including ipc_message_macros.h Created 6 years, 1 month 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
(Empty)
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
3 // found in the LICENSE file.
4
5 // Multiply-included file, no traditional include guard.
6 #include <string>
7 #include <vector>
8
9 #include "content/public/common/common_param_traits.h"
10 #include "ipc/ipc_message_macros.h"
11 #include "ipc/ipc_platform_file.h"
12 #include "url/gurl.h"
13
14 #define IPC_MESSAGE_START LayoutTestMsgStart
15
16 IPC_SYNC_MESSAGE_ROUTED1_1(LayoutTestHostMsg_ReadFileToString,
17 base::FilePath /* local path */,
18 std::string /* contents */)
19 IPC_SYNC_MESSAGE_ROUTED1_1(LayoutTestHostMsg_RegisterIsolatedFileSystem,
20 std::vector<base::FilePath> /* absolute_filenames */,
21 std::string /* filesystem_id */)
22 IPC_MESSAGE_ROUTED0(LayoutTestHostMsg_ClearAllDatabases)
23 IPC_MESSAGE_ROUTED1(LayoutTestHostMsg_SetDatabaseQuota,
24 int /* quota */)
25 IPC_SYNC_MESSAGE_ROUTED1_1(LayoutTestHostMsg_CheckWebNotificationPermission,
26 GURL /* origin */,
27 int /* result */)
28 IPC_MESSAGE_ROUTED2(LayoutTestHostMsg_GrantWebNotificationPermission,
29 GURL /* origin */,
30 bool /* permission_granted */)
31 IPC_MESSAGE_ROUTED0(LayoutTestHostMsg_ClearWebNotificationPermissions)
32 IPC_MESSAGE_ROUTED1(LayoutTestHostMsg_SimulateWebNotificationClick,
33 std::string /* title */)
34 IPC_MESSAGE_ROUTED1(LayoutTestHostMsg_AcceptAllCookies,
35 bool /* accept */)
36 IPC_MESSAGE_ROUTED0(LayoutTestHostMsg_DeleteAllCookies)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698