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 374 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
385 IPC_MESSAGE_ROUTED0(ChromeViewMsg_GetFPS) | 385 IPC_MESSAGE_ROUTED0(ChromeViewMsg_GetFPS) |
386 | 386 |
387 // Tells the view it is displaying an interstitial page. | 387 // Tells the view it is displaying an interstitial page. |
388 IPC_MESSAGE_ROUTED0(ChromeViewMsg_SetAsInterstitial) | 388 IPC_MESSAGE_ROUTED0(ChromeViewMsg_SetAsInterstitial) |
389 | 389 |
390 // Provides the renderer with the results of the browser's investigation into | 390 // Provides the renderer with the results of the browser's investigation into |
391 // why a recent main frame load failed (currently, just DNS probe result). | 391 // why a recent main frame load failed (currently, just DNS probe result). |
392 // NetErrorHelper will receive this mesage and replace or update the error | 392 // NetErrorHelper will receive this mesage and replace or update the error |
393 // page with more specific troubleshooting suggestions. | 393 // page with more specific troubleshooting suggestions. |
394 IPC_MESSAGE_ROUTED1(ChromeViewMsg_NetErrorInfo, | 394 IPC_MESSAGE_ROUTED1(ChromeViewMsg_NetErrorInfo, |
395 int /* DNS probe status */) | 395 int /* DNS probe result */) |
396 | 396 |
397 //----------------------------------------------------------------------------- | 397 //----------------------------------------------------------------------------- |
398 // Misc messages | 398 // Misc messages |
399 // These are messages sent from the renderer to the browser process. | 399 // These are messages sent from the renderer to the browser process. |
400 | 400 |
401 // Provides the contents for the given page that was loaded recently. | 401 // Provides the contents for the given page that was loaded recently. |
402 IPC_MESSAGE_ROUTED3(ChromeViewHostMsg_PageContents, | 402 IPC_MESSAGE_ROUTED3(ChromeViewHostMsg_PageContents, |
403 GURL /* URL of the page */, | 403 GURL /* URL of the page */, |
404 int32 /* page id */, | 404 int32 /* page id */, |
405 string16 /* page contents */) | 405 string16 /* page contents */) |
(...skipping 270 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
676 | 676 |
677 // Tells InstantExtended to undo one most visited item deletion. | 677 // Tells InstantExtended to undo one most visited item deletion. |
678 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_SearchBoxUndoMostVisitedDeletion, | 678 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_SearchBoxUndoMostVisitedDeletion, |
679 int /* page_id */, | 679 int /* page_id */, |
680 GURL /* url */) | 680 GURL /* url */) |
681 | 681 |
682 // Tells InstantExtended whether the page supports voice search. | 682 // Tells InstantExtended whether the page supports voice search. |
683 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_SetVoiceSearchSupported, | 683 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_SetVoiceSearchSupported, |
684 int /* page_id */, | 684 int /* page_id */, |
685 bool /* supported */) | 685 bool /* supported */) |
OLD | NEW |