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 <string> | 7 #include <string> |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/files/file_path.h" | 10 #include "base/files/file_path.h" |
(...skipping 417 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
428 | 428 |
429 // Tells the renderer that a banner has been accepted. | 429 // Tells the renderer that a banner has been accepted. |
430 IPC_MESSAGE_ROUTED2(ChromeViewMsg_AppBannerAccepted, | 430 IPC_MESSAGE_ROUTED2(ChromeViewMsg_AppBannerAccepted, |
431 int32_t /* request_id */, | 431 int32_t /* request_id */, |
432 std::string /* platform */) | 432 std::string /* platform */) |
433 | 433 |
434 // Tells the renderer that a banner has been dismissed. | 434 // Tells the renderer that a banner has been dismissed. |
435 IPC_MESSAGE_ROUTED1(ChromeViewMsg_AppBannerDismissed, | 435 IPC_MESSAGE_ROUTED1(ChromeViewMsg_AppBannerDismissed, |
436 int32_t /* request_id */) | 436 int32_t /* request_id */) |
437 | 437 |
438 // Asks the renderer to log a debug message to console regarding an | |
439 // app banner. | |
440 IPC_MESSAGE_ROUTED1(ChromeViewMsg_AppBannerDebugMessageRequest, | |
441 std::string /* message */) | |
442 | |
443 // Notification that the page has an OpenSearch description document | 438 // Notification that the page has an OpenSearch description document |
444 // associated with it. | 439 // associated with it. |
445 IPC_MESSAGE_ROUTED3(ChromeViewHostMsg_PageHasOSDD, | 440 IPC_MESSAGE_ROUTED3(ChromeViewHostMsg_PageHasOSDD, |
446 GURL /* page_url */, | 441 GURL /* page_url */, |
447 GURL /* osdd_url */, | 442 GURL /* osdd_url */, |
448 search_provider::OSDDType) | 443 search_provider::OSDDType) |
449 | 444 |
450 // Find out if the given url's security origin is installed as a search | 445 // Find out if the given url's security origin is installed as a search |
451 // provider. | 446 // provider. |
452 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetSearchProviderInstallState, | 447 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetSearchProviderInstallState, |
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
576 | 571 |
577 // Record a sample string to a Rappor metric. | 572 // Record a sample string to a Rappor metric. |
578 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRappor, | 573 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRappor, |
579 std::string /* metric */, | 574 std::string /* metric */, |
580 std::string /* sample */) | 575 std::string /* sample */) |
581 | 576 |
582 // Record a domain and registry of a url to a Rappor metric. | 577 // Record a domain and registry of a url to a Rappor metric. |
583 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRapporURL, | 578 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRapporURL, |
584 std::string /* metric */, | 579 std::string /* metric */, |
585 GURL /* sample url */) | 580 GURL /* sample url */) |
OLD | NEW |