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 617 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
628 blink::WebAppBannerPromptReply /* reply */, | 628 blink::WebAppBannerPromptReply /* reply */, |
629 std::string /* referrer */) | 629 std::string /* referrer */) |
630 | 630 |
631 // Tells the browser to restart the app banner display pipeline. | 631 // Tells the browser to restart the app banner display pipeline. |
632 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_RequestShowAppBanner, | 632 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_RequestShowAppBanner, |
633 int32_t /* request_id */) | 633 int32_t /* request_id */) |
634 | 634 |
635 // Sent by the renderer to indicate that a fields trial has been activated. | 635 // Sent by the renderer to indicate that a fields trial has been activated. |
636 IPC_MESSAGE_CONTROL1(ChromeViewHostMsg_FieldTrialActivated, | 636 IPC_MESSAGE_CONTROL1(ChromeViewHostMsg_FieldTrialActivated, |
637 std::string /* name */) | 637 std::string /* name */) |
638 | |
639 // Record a sample string to a Rappor metric. | |
640 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRappor, | |
641 std::string /* metric */, | |
642 std::string /* sample */) | |
643 | |
644 // Record a domain and registry of a url to a Rappor metric. | |
645 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRapporURL, | |
646 std::string /* metric */, | |
647 GURL /* sample url */) | |
OLD | NEW |