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 <stdint.h> | 6 #include <stdint.h> |
7 #include <map> | 7 #include <map> |
8 #include <set> | 8 #include <set> |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
(...skipping 444 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
455 | 455 |
456 // Tells the renderer that a banner has been accepted. | 456 // Tells the renderer that a banner has been accepted. |
457 IPC_MESSAGE_ROUTED2(ChromeViewMsg_AppBannerAccepted, | 457 IPC_MESSAGE_ROUTED2(ChromeViewMsg_AppBannerAccepted, |
458 int32_t /* request_id */, | 458 int32_t /* request_id */, |
459 std::string /* platform */) | 459 std::string /* platform */) |
460 | 460 |
461 // Tells the renderer that a banner has been dismissed. | 461 // Tells the renderer that a banner has been dismissed. |
462 IPC_MESSAGE_ROUTED1(ChromeViewMsg_AppBannerDismissed, | 462 IPC_MESSAGE_ROUTED1(ChromeViewMsg_AppBannerDismissed, |
463 int32_t /* request_id */) | 463 int32_t /* request_id */) |
464 | 464 |
| 465 // Asks the renderer to log a debug message to console regarding an |
| 466 // app banner. |
| 467 IPC_MESSAGE_ROUTED1(ChromeViewMsg_AppBannerDebugMessageRequest, |
| 468 std::string /* message */) |
| 469 |
465 // Notification that the page has an OpenSearch description document | 470 // Notification that the page has an OpenSearch description document |
466 // associated with it. | 471 // associated with it. |
467 IPC_MESSAGE_ROUTED3(ChromeViewHostMsg_PageHasOSDD, | 472 IPC_MESSAGE_ROUTED3(ChromeViewHostMsg_PageHasOSDD, |
468 GURL /* page_url */, | 473 GURL /* page_url */, |
469 GURL /* osdd_url */, | 474 GURL /* osdd_url */, |
470 search_provider::OSDDType) | 475 search_provider::OSDDType) |
471 | 476 |
472 // Find out if the given url's security origin is installed as a search | 477 // Find out if the given url's security origin is installed as a search |
473 // provider. | 478 // provider. |
474 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetSearchProviderInstallState, | 479 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetSearchProviderInstallState, |
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
611 | 616 |
612 // Record a sample string to a Rappor metric. | 617 // Record a sample string to a Rappor metric. |
613 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRappor, | 618 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRappor, |
614 std::string /* metric */, | 619 std::string /* metric */, |
615 std::string /* sample */) | 620 std::string /* sample */) |
616 | 621 |
617 // Record a domain and registry of a url to a Rappor metric. | 622 // Record a domain and registry of a url to a Rappor metric. |
618 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRapporURL, | 623 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRapporURL, |
619 std::string /* metric */, | 624 std::string /* metric */, |
620 GURL /* sample url */) | 625 GURL /* sample url */) |
OLD | NEW |