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

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

Issue 2674843002: Convert ChromeViewMsg_SetAllowRunningInsecureContent to use mojo. (Closed)
Patch Set: Convert ChromeViewMsg_SetAllowRunningInsecureContent 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 // Sent to allow or forbid the running of insecure mixed-content.
128 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SetAllowRunningInsecureContent,
129 bool /* allowed */)
130
131 IPC_MESSAGE_ROUTED0(ChromeViewMsg_ReloadFrame)
132
133 // Tells the renderer whether or not a file system access has been allowed. 127 // Tells the renderer whether or not a file system access has been allowed.
134 IPC_MESSAGE_ROUTED2(ChromeViewMsg_RequestFileSystemAccessAsyncResponse, 128 IPC_MESSAGE_ROUTED2(ChromeViewMsg_RequestFileSystemAccessAsyncResponse,
135 int /* request_id */, 129 int /* request_id */,
136 bool /* allowed */) 130 bool /* allowed */)
137 131
138 // Sent when the profile changes the kSafeBrowsingEnabled preference. 132 // Sent when the profile changes the kSafeBrowsingEnabled preference.
139 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SetClientSidePhishingDetection, 133 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SetClientSidePhishingDetection,
140 bool /* enable_phishing_detection */) 134 bool /* enable_phishing_detection */)
141 135
142 // Reloads the image selected by the most recently opened context menu 136 // Reloads the image selected by the most recently opened context menu
(...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after
389 // process so that they can be assigned to an Instant renderer. 383 // process so that they can be assigned to an Instant renderer.
390 IPC_MESSAGE_CONTROL2(ChromeViewMsg_SetSearchURLs, 384 IPC_MESSAGE_CONTROL2(ChromeViewMsg_SetSearchURLs,
391 std::vector<GURL> /* search_urls */, 385 std::vector<GURL> /* search_urls */,
392 GURL /* new_tab_page_url */) 386 GURL /* new_tab_page_url */)
393 387
394 #if BUILDFLAG(ENABLE_PLUGINS) 388 #if BUILDFLAG(ENABLE_PLUGINS)
395 // Sent by the renderer to check if crash reporting is enabled. 389 // Sent by the renderer to check if crash reporting is enabled.
396 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_IsCrashReportingEnabled, 390 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_IsCrashReportingEnabled,
397 bool /* enabled */) 391 bool /* enabled */)
398 #endif 392 #endif
OLDNEW
« no previous file with comments | « chrome/common/insecure_content_renderer.mojom ('k') | chrome/renderer/content_settings_observer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698