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

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

Issue 1878863002: Replicate LayoutTestRuntimeFlags across secondary window renderers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@replicate-web-content-settings
Patch Set: Rebasing... Created 4 years, 8 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 "ipc/ipc_message_macros.h" 9 #include "ipc/ipc_message_macros.h"
10 #include "ipc/ipc_platform_file.h" 10 #include "ipc/ipc_platform_file.h"
(...skipping 24 matching lines...) Expand all
35 bool /* by_user */) 35 bool /* by_user */)
36 IPC_MESSAGE_ROUTED1(LayoutTestHostMsg_AcceptAllCookies, 36 IPC_MESSAGE_ROUTED1(LayoutTestHostMsg_AcceptAllCookies,
37 bool /* accept */) 37 bool /* accept */)
38 IPC_MESSAGE_ROUTED0(LayoutTestHostMsg_DeleteAllCookies) 38 IPC_MESSAGE_ROUTED0(LayoutTestHostMsg_DeleteAllCookies)
39 IPC_MESSAGE_ROUTED4(LayoutTestHostMsg_SetPermission, 39 IPC_MESSAGE_ROUTED4(LayoutTestHostMsg_SetPermission,
40 std::string /* name */, 40 std::string /* name */,
41 blink::mojom::PermissionStatus /* status */, 41 blink::mojom::PermissionStatus /* status */,
42 GURL /* origin */, 42 GURL /* origin */,
43 GURL /* embedding_origin */) 43 GURL /* embedding_origin */)
44 IPC_MESSAGE_ROUTED0(LayoutTestHostMsg_ResetPermissions) 44 IPC_MESSAGE_ROUTED0(LayoutTestHostMsg_ResetPermissions)
45
46 // Notifies the browser that one of renderers has changed layout test runtime
47 // flags (i.e. has set dump_as_text).
48 IPC_MESSAGE_CONTROL1(
49 LayoutTestHostMsg_LayoutTestRuntimeFlagsChanged,
50 base::DictionaryValue /* changed_layout_test_runtime_flags */)
51
52 // Used send flag changes to renderers - either when
53 // 1) broadcasting change happening in one renderer to all other renderers, or
54 // 2) sending accumulated changes to a single new renderer.
55 IPC_MESSAGE_CONTROL1(
56 LayoutTestMsg_ReplicateLayoutTestRuntimeFlagsChanges,
57 base::DictionaryValue /* changed_layout_test_runtime_flags */)
OLDNEW
« no previous file with comments | « content/shell/common/layout_test/layout_test_content_client.cc ('k') | content/shell/common/shell_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698