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

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

Issue 15907006: Rip out browser-side RID caching for most visited items. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 7 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 | Annotate | Revision Log
« no previous file with comments | « chrome/chrome_tests_unit.gypi ('k') | chrome/renderer/chrome_content_renderer_client.cc » ('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 <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 350 matching lines...) Expand 10 before | Expand all | Expand 10 after
361 361
362 IPC_MESSAGE_ROUTED2(ChromeViewMsg_SearchBoxFontInformation, 362 IPC_MESSAGE_ROUTED2(ChromeViewMsg_SearchBoxFontInformation,
363 string16 /* omnibox_font */, 363 string16 /* omnibox_font */,
364 size_t /* omnibox_font_size */) 364 size_t /* omnibox_font_size */)
365 365
366 IPC_MESSAGE_ROUTED2(ChromeViewMsg_SearchBoxFocusChanged, 366 IPC_MESSAGE_ROUTED2(ChromeViewMsg_SearchBoxFocusChanged,
367 OmniboxFocusState /* new_focus_state */, 367 OmniboxFocusState /* new_focus_state */,
368 OmniboxFocusChangeReason /* reason */) 368 OmniboxFocusChangeReason /* reason */)
369 369
370 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxMostVisitedItemsChanged, 370 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxMostVisitedItemsChanged,
371 std::vector<InstantMostVisitedItemIDPair> /* items */) 371 std::vector<InstantMostVisitedItem> /* items */)
372 372
373 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_SearchBoxDeleteMostVisitedItem, 373 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_SearchBoxDeleteMostVisitedItem,
374 GURL /* url */) 374 GURL /* url */)
375 375
376 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_SearchBoxUndoMostVisitedDeletion, 376 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_SearchBoxUndoMostVisitedDeletion,
377 GURL /* url */) 377 GURL /* url */)
378 378
379 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_SearchBoxUndoAllMostVisitedDeletions) 379 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_SearchBoxUndoAllMostVisitedDeletions)
380 380
381 IPC_MESSAGE_ROUTED0(ChromeViewMsg_SearchBoxToggleVoiceSearch) 381 IPC_MESSAGE_ROUTED0(ChromeViewMsg_SearchBoxToggleVoiceSearch)
(...skipping 391 matching lines...) Expand 10 before | Expand all | Expand 10 after
773 // previous SetCookie message to be processed. 773 // previous SetCookie message to be processed.
774 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, 774 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies,
775 GURL /* url */, 775 GURL /* url */,
776 GURL /* first_party_for_cookies */, 776 GURL /* first_party_for_cookies */,
777 std::string /* cookies */) 777 std::string /* cookies */)
778 778
779 // Provide the browser process with current renderer framerate. 779 // Provide the browser process with current renderer framerate.
780 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, 780 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS,
781 int /* routing id */, 781 int /* routing id */,
782 float /* frames per second */) 782 float /* frames per second */)
OLDNEW
« no previous file with comments | « chrome/chrome_tests_unit.gypi ('k') | chrome/renderer/chrome_content_renderer_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698