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

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

Issue 2693573002: Remove unused WebWindowFeatures from popup blocker, reducing WebString use in browser (Closed)
Patch Set: 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
« no previous file with comments | « chrome/browser/ui/browser.cc ('k') | chrome/renderer/chrome_render_view_observer.h » ('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 144 matching lines...) Expand 10 before | Expand all | Expand 10 after
155 155
156 // Notifies the renderer whether hiding/showing the browser controls is enabled, 156 // Notifies the renderer whether hiding/showing the browser controls is enabled,
157 // what the current state should be, and whether or not to animate to the 157 // what the current state should be, and whether or not to animate to the
158 // proper state. 158 // proper state.
159 IPC_MESSAGE_ROUTED3(ChromeViewMsg_UpdateBrowserControlsState, 159 IPC_MESSAGE_ROUTED3(ChromeViewMsg_UpdateBrowserControlsState,
160 content::BrowserControlsState /* constraints */, 160 content::BrowserControlsState /* constraints */,
161 content::BrowserControlsState /* current */, 161 content::BrowserControlsState /* current */,
162 bool /* animate */) 162 bool /* animate */)
163 163
164 // Updates the window features of the render view. 164 // Updates the window features of the render view.
165 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SetWindowFeatures, 165 IPC_MESSAGE_ROUTED0(ChromeViewMsg_SetWindowFeatures)
166 blink::WebWindowFeatures /* window_features */)
167 166
168 // Responds to the request for a thumbnail. 167 // Responds to the request for a thumbnail.
169 // Thumbnail data will be empty is a thumbnail could not be produced. 168 // Thumbnail data will be empty is a thumbnail could not be produced.
170 IPC_MESSAGE_ROUTED3(ChromeViewHostMsg_RequestThumbnailForContextNode_ACK, 169 IPC_MESSAGE_ROUTED3(ChromeViewHostMsg_RequestThumbnailForContextNode_ACK,
171 std::string /* JPEG-encoded thumbnail data */, 170 std::string /* JPEG-encoded thumbnail data */,
172 gfx::Size /* original size of the image */, 171 gfx::Size /* original size of the image */,
173 int /* ID of the callback */) 172 int /* ID of the callback */)
174 173
175 // Requests application info for the page. The renderer responds back with 174 // Requests application info for the page. The renderer responds back with
176 // ChromeViewHostMsg_DidGetWebApplicationInfo. 175 // ChromeViewHostMsg_DidGetWebApplicationInfo.
(...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after
389 // process so that they can be assigned to an Instant renderer. 388 // process so that they can be assigned to an Instant renderer.
390 IPC_MESSAGE_CONTROL2(ChromeViewMsg_SetSearchURLs, 389 IPC_MESSAGE_CONTROL2(ChromeViewMsg_SetSearchURLs,
391 std::vector<GURL> /* search_urls */, 390 std::vector<GURL> /* search_urls */,
392 GURL /* new_tab_page_url */) 391 GURL /* new_tab_page_url */)
393 392
394 #if BUILDFLAG(ENABLE_PLUGINS) 393 #if BUILDFLAG(ENABLE_PLUGINS)
395 // Sent by the renderer to check if crash reporting is enabled. 394 // Sent by the renderer to check if crash reporting is enabled.
396 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_IsCrashReportingEnabled, 395 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_IsCrashReportingEnabled,
397 bool /* enabled */) 396 bool /* enabled */)
398 #endif 397 #endif
OLDNEW
« no previous file with comments | « chrome/browser/ui/browser.cc ('k') | chrome/renderer/chrome_render_view_observer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698