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

Side by Side Diff: chrome/common/render_messages.h

Issue 2642263002: Convert ChromeViewMsg_SetFieldTrialGroup to use mojo. (Closed)
Patch Set: Convert ChromeViewMsg_SetFieldTrialGroup to use mojo. Created 3 years, 10 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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 <stdint.h> 6 #include <stdint.h>
7 #include <string> 7 #include <string>
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/files/file_path.h" 10 #include "base/files/file_path.h"
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 // which is late enough to not be thrown out, and early enough to be before 117 // which is late enough to not be thrown out, and early enough to be before
118 // onload events are fired. 118 // onload events are fired.
119 IPC_MESSAGE_ROUTED1(ChromeViewMsg_WebUIJavaScript, 119 IPC_MESSAGE_ROUTED1(ChromeViewMsg_WebUIJavaScript,
120 base::string16 /* javascript */) 120 base::string16 /* javascript */)
121 #endif 121 #endif
122 122
123 // Tells the render frame to load all blocked plugins with the given identifier. 123 // Tells the render frame to load all blocked plugins with the given identifier.
124 IPC_MESSAGE_ROUTED1(ChromeViewMsg_LoadBlockedPlugins, 124 IPC_MESSAGE_ROUTED1(ChromeViewMsg_LoadBlockedPlugins,
125 std::string /* identifier */) 125 std::string /* identifier */)
126 126
127 // Tells the renderer to create a FieldTrial, and by using a 100% probability
128 // for the FieldTrial, forces the FieldTrial to have assigned group name.
129 IPC_MESSAGE_CONTROL2(ChromeViewMsg_SetFieldTrialGroup,
130 std::string /* field trial name */,
131 std::string /* group name that was assigned. */)
132
133 // Sent to allow or forbid the running of insecure mixed-content. 127 // Sent to allow or forbid the running of insecure mixed-content.
134 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SetAllowRunningInsecureContent, 128 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SetAllowRunningInsecureContent,
135 bool /* allowed */) 129 bool /* allowed */)
136 130
137 IPC_MESSAGE_ROUTED0(ChromeViewMsg_ReloadFrame) 131 IPC_MESSAGE_ROUTED0(ChromeViewMsg_ReloadFrame)
138 132
139 // Tells the renderer whether or not a file system access has been allowed. 133 // Tells the renderer whether or not a file system access has been allowed.
140 IPC_MESSAGE_ROUTED2(ChromeViewMsg_RequestFileSystemAccessAsyncResponse, 134 IPC_MESSAGE_ROUTED2(ChromeViewMsg_RequestFileSystemAccessAsyncResponse,
141 int /* request_id */, 135 int /* request_id */,
142 bool /* allowed */) 136 bool /* allowed */)
(...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after
395 // process so that they can be assigned to an Instant renderer. 389 // process so that they can be assigned to an Instant renderer.
396 IPC_MESSAGE_CONTROL2(ChromeViewMsg_SetSearchURLs, 390 IPC_MESSAGE_CONTROL2(ChromeViewMsg_SetSearchURLs,
397 std::vector<GURL> /* search_urls */, 391 std::vector<GURL> /* search_urls */,
398 GURL /* new_tab_page_url */) 392 GURL /* new_tab_page_url */)
399 393
400 #if BUILDFLAG(ENABLE_PLUGINS) 394 #if BUILDFLAG(ENABLE_PLUGINS)
401 // Sent by the renderer to check if crash reporting is enabled. 395 // Sent by the renderer to check if crash reporting is enabled.
402 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_IsCrashReportingEnabled, 396 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_IsCrashReportingEnabled,
403 bool /* enabled */) 397 bool /* enabled */)
404 #endif 398 #endif
OLDNEW
« no previous file with comments | « chrome/browser/metrics/field_trial_synchronizer.cc ('k') | chrome/common/renderer_configuration.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698