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

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
« no previous file with comments | « chrome/common/BUILD.gn ('k') | chrome/common/renderer_configuration.mojom » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 234 matching lines...) Expand 10 before | Expand all | Expand 10 after
245 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxThemeChanged, 245 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxThemeChanged,
246 ThemeBackgroundInfo /* value */) 246 ThemeBackgroundInfo /* value */)
247 247
248 IPC_MESSAGE_ROUTED1(ChromeViewMsg_HistorySyncCheckResult, 248 IPC_MESSAGE_ROUTED1(ChromeViewMsg_HistorySyncCheckResult,
249 bool /* sync_history */) 249 bool /* sync_history */)
250 250
251 IPC_MESSAGE_ROUTED2(ChromeViewMsg_ChromeIdentityCheckResult, 251 IPC_MESSAGE_ROUTED2(ChromeViewMsg_ChromeIdentityCheckResult,
252 base::string16 /* identity */, 252 base::string16 /* identity */,
253 bool /* identity_match */) 253 bool /* identity_match */)
254 254
255 // Sent on process startup to indicate whether this process is running in
256 // incognito mode.
257 IPC_MESSAGE_CONTROL1(ChromeViewMsg_SetIsIncognitoProcess,
258 bool /* is_incognito_processs */)
259
260 // Sent in response to FrameHostMsg_DidBlockRunningInsecureContent. 255 // Sent in response to FrameHostMsg_DidBlockRunningInsecureContent.
261 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SetAllowRunningInsecureContent, 256 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SetAllowRunningInsecureContent,
262 bool /* allowed */) 257 bool /* allowed */)
263 258
264 IPC_MESSAGE_ROUTED0(ChromeViewMsg_ReloadFrame) 259 IPC_MESSAGE_ROUTED0(ChromeViewMsg_ReloadFrame)
265 260
266 // Tells the renderer whether or not a file system access has been allowed. 261 // Tells the renderer whether or not a file system access has been allowed.
267 IPC_MESSAGE_ROUTED2(ChromeViewMsg_RequestFileSystemAccessAsyncResponse, 262 IPC_MESSAGE_ROUTED2(ChromeViewMsg_RequestFileSystemAccessAsyncResponse,
268 int /* request_id */, 263 int /* request_id */,
269 bool /* allowed */) 264 bool /* allowed */)
(...skipping 323 matching lines...) Expand 10 before | Expand all | Expand 10 after
593 // process so that they can be assigned to an Instant renderer. 588 // process so that they can be assigned to an Instant renderer.
594 IPC_MESSAGE_CONTROL2(ChromeViewMsg_SetSearchURLs, 589 IPC_MESSAGE_CONTROL2(ChromeViewMsg_SetSearchURLs,
595 std::vector<GURL> /* search_urls */, 590 std::vector<GURL> /* search_urls */,
596 GURL /* new_tab_page_url */) 591 GURL /* new_tab_page_url */)
597 592
598 #if BUILDFLAG(ENABLE_PLUGINS) 593 #if BUILDFLAG(ENABLE_PLUGINS)
599 // Sent by the renderer to check if crash reporting is enabled. 594 // Sent by the renderer to check if crash reporting is enabled.
600 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_IsCrashReportingEnabled, 595 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_IsCrashReportingEnabled,
601 bool /* enabled */) 596 bool /* enabled */)
602 #endif 597 #endif
OLDNEW
« no previous file with comments | « chrome/common/BUILD.gn ('k') | chrome/common/renderer_configuration.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698