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

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

Issue 10732002: Upstream rewrite of Instant. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: First round of comments Created 8 years, 5 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 | Annotate | Revision Log
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 <map> 6 #include <map>
7 #include <set> 7 #include <set>
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after
260 // Asks the renderer to send back V8 heap stats. 260 // Asks the renderer to send back V8 heap stats.
261 IPC_MESSAGE_CONTROL0(ChromeViewMsg_GetV8HeapStats) 261 IPC_MESSAGE_CONTROL0(ChromeViewMsg_GetV8HeapStats)
262 262
263 // Posts a message to the renderer. 263 // Posts a message to the renderer.
264 IPC_MESSAGE_ROUTED3(ChromeViewMsg_HandleMessageFromExternalHost, 264 IPC_MESSAGE_ROUTED3(ChromeViewMsg_HandleMessageFromExternalHost,
265 std::string /* The message */, 265 std::string /* The message */,
266 std::string /* The origin */, 266 std::string /* The origin */,
267 std::string /* The target*/) 267 std::string /* The target*/)
268 268
269 IPC_MESSAGE_ROUTED4(ChromeViewMsg_SearchBoxChange, 269 IPC_MESSAGE_ROUTED4(ChromeViewMsg_SearchBoxChange,
270 string16 /* value */, 270 std::string /* value */,
271 bool /* verbatim */, 271 bool /* verbatim */,
272 int /* selection_start */, 272 size_t /* selection_start */,
273 int /* selection_end */) 273 size_t /* selection_end */)
274 IPC_MESSAGE_ROUTED2(ChromeViewMsg_SearchBoxSubmit, 274 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxSubmit,
275 string16 /* value */, 275 std::string /* value */)
276 bool /* verbatim */) 276 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxCancel,
277 IPC_MESSAGE_ROUTED0(ChromeViewMsg_SearchBoxCancel) 277 std::string /* value */)
278 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxResize, 278 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxResize,
279 gfx::Rect /* search_box_bounds */) 279 gfx::Rect /* search_box_bounds */)
280 IPC_MESSAGE_ROUTED4(ChromeViewMsg_DetermineIfPageSupportsInstant, 280 IPC_MESSAGE_ROUTED0(ChromeViewMsg_DetermineIfPageSupportsInstant)
281 string16 /* value*/,
282 bool /* verbatim */,
283 int /* selection_start */,
284 int /* selection_end */)
285 281
286 // Toggles visual muting of the render view area. This is on when a constrained 282 // Toggles visual muting of the render view area. This is on when a constrained
287 // window is showing. 283 // window is showing.
288 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SetVisuallyDeemphasized, 284 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SetVisuallyDeemphasized,
289 bool /* deemphazied */) 285 bool /* deemphazied */)
290 286
291 // Tells the renderer to translate the page contents from one language to 287 // Tells the renderer to translate the page contents from one language to
292 // another. 288 // another.
293 IPC_MESSAGE_ROUTED4(ChromeViewMsg_TranslatePage, 289 IPC_MESSAGE_ROUTED4(ChromeViewMsg_TranslatePage,
294 int /* page id */, 290 int /* page id */,
(...skipping 326 matching lines...) Expand 10 before | Expand all | Expand 10 after
621 // previous SetCookie message to be processed. 617 // previous SetCookie message to be processed.
622 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, 618 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies,
623 GURL /* url */, 619 GURL /* url */,
624 GURL /* first_party_for_cookies */, 620 GURL /* first_party_for_cookies */,
625 std::string /* cookies */) 621 std::string /* cookies */)
626 622
627 // Provide the browser process with current renderer framerate. 623 // Provide the browser process with current renderer framerate.
628 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, 624 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS,
629 int /* routing id */, 625 int /* routing id */,
630 float /* frames per second */) 626 float /* frames per second */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698