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

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

Issue 12732005: Most visited thumbnails and favicons need id-based urls (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address estade's comments. Created 7 years, 9 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/common/instant_types.h ('k') | chrome/renderer/resources/extensions/searchbox_api.js » ('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 149 matching lines...) Expand 10 before | Expand all | Expand 10 after
160 160
161 IPC_STRUCT_TRAITS_BEGIN(InstantAutocompleteResult) 161 IPC_STRUCT_TRAITS_BEGIN(InstantAutocompleteResult)
162 IPC_STRUCT_TRAITS_MEMBER(provider) 162 IPC_STRUCT_TRAITS_MEMBER(provider)
163 IPC_STRUCT_TRAITS_MEMBER(type) 163 IPC_STRUCT_TRAITS_MEMBER(type)
164 IPC_STRUCT_TRAITS_MEMBER(description) 164 IPC_STRUCT_TRAITS_MEMBER(description)
165 IPC_STRUCT_TRAITS_MEMBER(destination_url) 165 IPC_STRUCT_TRAITS_MEMBER(destination_url)
166 IPC_STRUCT_TRAITS_MEMBER(transition) 166 IPC_STRUCT_TRAITS_MEMBER(transition)
167 IPC_STRUCT_TRAITS_MEMBER(relevance) 167 IPC_STRUCT_TRAITS_MEMBER(relevance)
168 IPC_STRUCT_TRAITS_END() 168 IPC_STRUCT_TRAITS_END()
169 169
170 IPC_STRUCT_TRAITS_BEGIN(MostVisitedItem) 170 IPC_STRUCT_TRAITS_BEGIN(InstantMostVisitedItem)
171 IPC_STRUCT_TRAITS_MEMBER(most_visited_item_id)
171 IPC_STRUCT_TRAITS_MEMBER(url) 172 IPC_STRUCT_TRAITS_MEMBER(url)
172 IPC_STRUCT_TRAITS_MEMBER(title) 173 IPC_STRUCT_TRAITS_MEMBER(title)
173 IPC_STRUCT_TRAITS_END() 174 IPC_STRUCT_TRAITS_END()
174 175
175 IPC_STRUCT_TRAITS_BEGIN(InstantSuggestion) 176 IPC_STRUCT_TRAITS_BEGIN(InstantSuggestion)
176 IPC_STRUCT_TRAITS_MEMBER(text) 177 IPC_STRUCT_TRAITS_MEMBER(text)
177 IPC_STRUCT_TRAITS_MEMBER(behavior) 178 IPC_STRUCT_TRAITS_MEMBER(behavior)
178 IPC_STRUCT_TRAITS_MEMBER(type) 179 IPC_STRUCT_TRAITS_MEMBER(type)
179 IPC_STRUCT_TRAITS_END() 180 IPC_STRUCT_TRAITS_END()
180 181
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after
335 IPC_MESSAGE_ROUTED2(ChromeViewMsg_SearchBoxFontInformation, 336 IPC_MESSAGE_ROUTED2(ChromeViewMsg_SearchBoxFontInformation,
336 string16 /* omnibox_font */, 337 string16 /* omnibox_font */,
337 size_t /* omnibox_font_size */) 338 size_t /* omnibox_font_size */)
338 339
339 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxKeyCaptureChanged, 340 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxKeyCaptureChanged,
340 bool /* is_key_capture_enabled */) 341 bool /* is_key_capture_enabled */)
341 342
342 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxGrantChromeSearchAccessFromOrigin, 343 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxGrantChromeSearchAccessFromOrigin,
343 GURL /* origin_url */) 344 GURL /* origin_url */)
344 345
345 IPC_MESSAGE_ROUTED1(ChromeViewMsg_InstantMostVisitedItemsChanged, 346 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxMostVisitedItemsChanged,
346 std::vector<MostVisitedItem> /* items */) 347 std::vector<InstantMostVisitedItem> /* items */)
347 348
348 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_InstantDeleteMostVisitedItem, 349 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_SearchBoxDeleteMostVisitedItem,
349 GURL /* url */) 350 uint64 /* most_visited_item_id */)
350 351
351 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_InstantUndoMostVisitedDeletion, 352 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_SearchBoxUndoMostVisitedDeletion,
352 GURL /* url */) 353 uint64 /* most_visited_item_id */)
353 354
354 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_InstantUndoAllMostVisitedDeletions) 355 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_SearchBoxUndoAllMostVisitedDeletions)
355 356
356 // Toggles visual muting of the render view area. This is on when a constrained 357 // Toggles visual muting of the render view area. This is on when a constrained
357 // window is showing. 358 // window is showing.
358 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SetVisuallyDeemphasized, 359 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SetVisuallyDeemphasized,
359 bool /* deemphazied */) 360 bool /* deemphazied */)
360 361
361 // Tells the renderer to translate the page contents from one language to 362 // Tells the renderer to translate the page contents from one language to
362 // another. 363 // another.
363 IPC_MESSAGE_ROUTED4(ChromeViewMsg_TranslatePage, 364 IPC_MESSAGE_ROUTED4(ChromeViewMsg_TranslatePage,
364 int /* page id */, 365 int /* page id */,
(...skipping 362 matching lines...) Expand 10 before | Expand all | Expand 10 after
727 // previous SetCookie message to be processed. 728 // previous SetCookie message to be processed.
728 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, 729 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies,
729 GURL /* url */, 730 GURL /* url */,
730 GURL /* first_party_for_cookies */, 731 GURL /* first_party_for_cookies */,
731 std::string /* cookies */) 732 std::string /* cookies */)
732 733
733 // Provide the browser process with current renderer framerate. 734 // Provide the browser process with current renderer framerate.
734 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, 735 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS,
735 int /* routing id */, 736 int /* routing id */,
736 float /* frames per second */) 737 float /* frames per second */)
OLDNEW
« no previous file with comments | « chrome/common/instant_types.h ('k') | chrome/renderer/resources/extensions/searchbox_api.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698