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

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

Issue 2531133002: Convert SetIsIncognitoProcess to use mojo. (Closed)
Patch Set: Convert SetIsIncognitoProcess to use mojo. Created 4 years 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 232 matching lines...) Expand 10 before | Expand all | Expand 10 after
243 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxThemeChanged, 243 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxThemeChanged,
244 ThemeBackgroundInfo /* value */) 244 ThemeBackgroundInfo /* value */)
245 245
246 IPC_MESSAGE_ROUTED1(ChromeViewMsg_HistorySyncCheckResult, 246 IPC_MESSAGE_ROUTED1(ChromeViewMsg_HistorySyncCheckResult,
247 bool /* sync_history */) 247 bool /* sync_history */)
248 248
249 IPC_MESSAGE_ROUTED2(ChromeViewMsg_ChromeIdentityCheckResult, 249 IPC_MESSAGE_ROUTED2(ChromeViewMsg_ChromeIdentityCheckResult,
250 base::string16 /* identity */, 250 base::string16 /* identity */,
251 bool /* identity_match */) 251 bool /* identity_match */)
252 252
253 // Sent on process startup to indicate whether this process is running in
254 // incognito mode.
255 IPC_MESSAGE_CONTROL1(ChromeViewMsg_SetIsIncognitoProcess,
256 bool /* is_incognito_processs */)
257
258 // Sent in response to FrameHostMsg_DidBlockRunningInsecureContent. 253 // Sent in response to FrameHostMsg_DidBlockRunningInsecureContent.
259 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SetAllowRunningInsecureContent, 254 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SetAllowRunningInsecureContent,
260 bool /* allowed */) 255 bool /* allowed */)
261 256
262 IPC_MESSAGE_ROUTED0(ChromeViewMsg_ReloadFrame) 257 IPC_MESSAGE_ROUTED0(ChromeViewMsg_ReloadFrame)
263 258
264 // Tells the renderer whether or not a file system access has been allowed. 259 // Tells the renderer whether or not a file system access has been allowed.
265 IPC_MESSAGE_ROUTED2(ChromeViewMsg_RequestFileSystemAccessAsyncResponse, 260 IPC_MESSAGE_ROUTED2(ChromeViewMsg_RequestFileSystemAccessAsyncResponse,
266 int /* request_id */, 261 int /* request_id */,
267 bool /* allowed */) 262 bool /* allowed */)
(...skipping 327 matching lines...) Expand 10 before | Expand all | Expand 10 after
595 590
596 #if BUILDFLAG(ENABLE_PLUGINS) 591 #if BUILDFLAG(ENABLE_PLUGINS)
597 // Sent by the renderer to check if crash reporting is enabled. 592 // Sent by the renderer to check if crash reporting is enabled.
598 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_IsCrashReportingEnabled, 593 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_IsCrashReportingEnabled,
599 bool /* enabled */) 594 bool /* enabled */)
600 #endif 595 #endif
601 596
602 // Sent by the renderer to indicate that a fields trial has been activated. 597 // Sent by the renderer to indicate that a fields trial has been activated.
603 IPC_MESSAGE_CONTROL1(ChromeViewHostMsg_FieldTrialActivated, 598 IPC_MESSAGE_CONTROL1(ChromeViewHostMsg_FieldTrialActivated,
604 std::string /* name */) 599 std::string /* name */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698