| OLD | NEW |
| 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 Loading... |
| 160 IPC_STRUCT_TRAITS_BEGIN(InstantAutocompleteResult) | 160 IPC_STRUCT_TRAITS_BEGIN(InstantAutocompleteResult) |
| 161 IPC_STRUCT_TRAITS_MEMBER(provider) | 161 IPC_STRUCT_TRAITS_MEMBER(provider) |
| 162 IPC_STRUCT_TRAITS_MEMBER(type) | 162 IPC_STRUCT_TRAITS_MEMBER(type) |
| 163 IPC_STRUCT_TRAITS_MEMBER(description) | 163 IPC_STRUCT_TRAITS_MEMBER(description) |
| 164 IPC_STRUCT_TRAITS_MEMBER(destination_url) | 164 IPC_STRUCT_TRAITS_MEMBER(destination_url) |
| 165 IPC_STRUCT_TRAITS_MEMBER(transition) | 165 IPC_STRUCT_TRAITS_MEMBER(transition) |
| 166 IPC_STRUCT_TRAITS_MEMBER(relevance) | 166 IPC_STRUCT_TRAITS_MEMBER(relevance) |
| 167 IPC_STRUCT_TRAITS_END() | 167 IPC_STRUCT_TRAITS_END() |
| 168 | 168 |
| 169 IPC_STRUCT_TRAITS_BEGIN(InstantMostVisitedItem) | 169 IPC_STRUCT_TRAITS_BEGIN(InstantMostVisitedItem) |
| 170 IPC_STRUCT_TRAITS_MEMBER(most_visited_item_id) | |
| 171 IPC_STRUCT_TRAITS_MEMBER(url) | 170 IPC_STRUCT_TRAITS_MEMBER(url) |
| 172 IPC_STRUCT_TRAITS_MEMBER(title) | 171 IPC_STRUCT_TRAITS_MEMBER(title) |
| 173 IPC_STRUCT_TRAITS_END() | 172 IPC_STRUCT_TRAITS_END() |
| 174 | 173 |
| 175 IPC_STRUCT_TRAITS_BEGIN(InstantSuggestion) | 174 IPC_STRUCT_TRAITS_BEGIN(InstantSuggestion) |
| 176 IPC_STRUCT_TRAITS_MEMBER(text) | 175 IPC_STRUCT_TRAITS_MEMBER(text) |
| 177 IPC_STRUCT_TRAITS_MEMBER(behavior) | 176 IPC_STRUCT_TRAITS_MEMBER(behavior) |
| 178 IPC_STRUCT_TRAITS_MEMBER(type) | 177 IPC_STRUCT_TRAITS_MEMBER(type) |
| 179 IPC_STRUCT_TRAITS_MEMBER(query) | 178 IPC_STRUCT_TRAITS_MEMBER(query) |
| 180 IPC_STRUCT_TRAITS_END() | 179 IPC_STRUCT_TRAITS_END() |
| (...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 340 string16 /* omnibox_font */, | 339 string16 /* omnibox_font */, |
| 341 size_t /* omnibox_font_size */) | 340 size_t /* omnibox_font_size */) |
| 342 | 341 |
| 343 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxKeyCaptureChanged, | 342 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxKeyCaptureChanged, |
| 344 bool /* is_key_capture_enabled */) | 343 bool /* is_key_capture_enabled */) |
| 345 | 344 |
| 346 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxGrantChromeSearchAccessFromOrigin, | 345 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxGrantChromeSearchAccessFromOrigin, |
| 347 GURL /* origin_url */) | 346 GURL /* origin_url */) |
| 348 | 347 |
| 349 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxMostVisitedItemsChanged, | 348 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxMostVisitedItemsChanged, |
| 350 std::vector<InstantMostVisitedItem> /* items */) | 349 std::vector<InstantMostVisitedItemIDPair> /* items */) |
| 351 | 350 |
| 352 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_SearchBoxDeleteMostVisitedItem, | 351 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_SearchBoxDeleteMostVisitedItem, |
| 353 uint64 /* most_visited_item_id */) | 352 InstantRestrictedID /* most_visited_item_id */) |
| 354 | 353 |
| 355 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_SearchBoxUndoMostVisitedDeletion, | 354 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_SearchBoxUndoMostVisitedDeletion, |
| 356 uint64 /* most_visited_item_id */) | 355 InstantRestrictedID /* most_visited_item_id */) |
| 357 | 356 |
| 358 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_SearchBoxUndoAllMostVisitedDeletions) | 357 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_SearchBoxUndoAllMostVisitedDeletions) |
| 359 | 358 |
| 360 // Toggles visual muting of the render view area. This is on when a constrained | 359 // Toggles visual muting of the render view area. This is on when a constrained |
| 361 // window is showing. | 360 // window is showing. |
| 362 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SetVisuallyDeemphasized, | 361 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SetVisuallyDeemphasized, |
| 363 bool /* deemphazied */) | 362 bool /* deemphazied */) |
| 364 | 363 |
| 365 // Tells the renderer to translate the page contents from one language to | 364 // Tells the renderer to translate the page contents from one language to |
| 366 // another. | 365 // another. |
| (...skipping 371 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 738 // previous SetCookie message to be processed. | 737 // previous SetCookie message to be processed. |
| 739 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, | 738 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, |
| 740 GURL /* url */, | 739 GURL /* url */, |
| 741 GURL /* first_party_for_cookies */, | 740 GURL /* first_party_for_cookies */, |
| 742 std::string /* cookies */) | 741 std::string /* cookies */) |
| 743 | 742 |
| 744 // Provide the browser process with current renderer framerate. | 743 // Provide the browser process with current renderer framerate. |
| 745 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, | 744 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, |
| 746 int /* routing id */, | 745 int /* routing id */, |
| 747 float /* frames per second */) | 746 float /* frames per second */) |
| OLD | NEW |