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

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

Issue 2928033002: Move GetDocument method from WebFrame to WebLocalFrame. (Closed)
Patch Set: Rebasing... Created 3 years, 6 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 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
139 // proper state. 139 // proper state.
140 IPC_MESSAGE_ROUTED3(ChromeViewMsg_UpdateBrowserControlsState, 140 IPC_MESSAGE_ROUTED3(ChromeViewMsg_UpdateBrowserControlsState,
141 content::BrowserControlsState /* constraints */, 141 content::BrowserControlsState /* constraints */,
142 content::BrowserControlsState /* current */, 142 content::BrowserControlsState /* current */,
143 bool /* animate */) 143 bool /* animate */)
144 144
145 // Updates the window features of the render view. 145 // Updates the window features of the render view.
146 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SetWindowFeatures, 146 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SetWindowFeatures,
147 blink::mojom::WindowFeatures /* window_features */) 147 blink::mojom::WindowFeatures /* window_features */)
148 148
149 // Requests application info for the page. The renderer responds back with 149 // Requests application info for the frame. The renderer responds back with
150 // ChromeViewHostMsg_DidGetWebApplicationInfo. 150 // ChromeFrameHostMsg_DidGetWebApplicationInfo.
151 IPC_MESSAGE_ROUTED0(ChromeViewMsg_GetWebApplicationInfo) 151 IPC_MESSAGE_ROUTED0(ChromeFrameMsg_GetWebApplicationInfo)
152 152
153 // chrome.principals messages ------------------------------------------------ 153 // chrome.principals messages ------------------------------------------------
154 154
155 // Message sent from the renderer to the browser to get the list of browser 155 // Message sent from the renderer to the browser to get the list of browser
156 // managed accounts for the given origin. 156 // managed accounts for the given origin.
157 IPC_SYNC_MESSAGE_CONTROL1_1(ChromeViewHostMsg_GetManagedAccounts, 157 IPC_SYNC_MESSAGE_CONTROL1_1(ChromeViewHostMsg_GetManagedAccounts,
158 GURL /* current URL */, 158 GURL /* current URL */,
159 std::vector<std::string> /* managed accounts */) 159 std::vector<std::string> /* managed accounts */)
160 160
161 // Message sent from the renderer to the browser to show the browser account 161 // Message sent from the renderer to the browser to show the browser account
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after
320 // Notifies when a plugin couldn't be loaded because it requires 320 // Notifies when a plugin couldn't be loaded because it requires
321 // user authorization. 321 // user authorization.
322 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_BlockedUnauthorizedPlugin, 322 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_BlockedUnauthorizedPlugin,
323 base::string16 /* name */, 323 base::string16 /* name */,
324 std::string /* plugin group identifier */) 324 std::string /* plugin group identifier */)
325 325
326 // Sent when the renderer was prevented from displaying insecure content in 326 // Sent when the renderer was prevented from displaying insecure content in
327 // a secure page by a security policy. The page may appear incomplete. 327 // a secure page by a security policy. The page may appear incomplete.
328 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_DidBlockDisplayingInsecureContent) 328 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_DidBlockDisplayingInsecureContent)
329 329
330 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_DidGetWebApplicationInfo, 330 IPC_MESSAGE_ROUTED1(ChromeFrameHostMsg_DidGetWebApplicationInfo,
331 WebApplicationInfo) 331 WebApplicationInfo)
332 332
333 // Tells the renderer a list of URLs which should be bounced back to the browser 333 // Tells the renderer a list of URLs which should be bounced back to the browser
334 // process so that they can be assigned to an Instant renderer. 334 // process so that they can be assigned to an Instant renderer.
335 IPC_MESSAGE_CONTROL2(ChromeViewMsg_SetSearchURLs, 335 IPC_MESSAGE_CONTROL2(ChromeViewMsg_SetSearchURLs,
336 std::vector<GURL> /* search_urls */, 336 std::vector<GURL> /* search_urls */,
337 GURL /* new_tab_page_url */) 337 GURL /* new_tab_page_url */)
338 338
339 #if BUILDFLAG(ENABLE_PLUGINS) 339 #if BUILDFLAG(ENABLE_PLUGINS)
340 // Sent by the renderer to check if crash reporting is enabled. 340 // Sent by the renderer to check if crash reporting is enabled.
341 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_IsCrashReportingEnabled, 341 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_IsCrashReportingEnabled,
342 bool /* enabled */) 342 bool /* enabled */)
343 #endif 343 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698