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" |
11 #include "base/strings/string16.h" | 11 #include "base/strings/string16.h" |
12 #include "base/time/time.h" | 12 #include "base/time/time.h" |
13 #include "build/build_config.h" | 13 #include "build/build_config.h" |
14 #include "chrome/common/instant_types.h" | 14 #include "chrome/common/search/instant_types.h" |
15 #include "chrome/common/ntp_logging_events.h" | 15 #include "chrome/common/search/ntp_logging_events.h" |
16 #include "chrome/common/search_provider.h" | 16 #include "chrome/common/search_provider.h" |
17 #include "chrome/common/web_application_info.h" | 17 #include "chrome/common/web_application_info.h" |
18 #include "components/content_settings/core/common/content_settings.h" | 18 #include "components/content_settings/core/common/content_settings.h" |
19 #include "components/content_settings/core/common/content_settings_pattern.h" | 19 #include "components/content_settings/core/common/content_settings_pattern.h" |
20 #include "components/omnibox/common/omnibox_focus_state.h" | 20 #include "components/omnibox/common/omnibox_focus_state.h" |
21 #include "content/public/common/top_controls_state.h" | 21 #include "content/public/common/top_controls_state.h" |
22 #include "content/public/common/webplugininfo.h" | 22 #include "content/public/common/webplugininfo.h" |
23 #include "ipc/ipc_channel_handle.h" | 23 #include "ipc/ipc_channel_handle.h" |
24 #include "ipc/ipc_message_macros.h" | 24 #include "ipc/ipc_message_macros.h" |
25 #include "ipc/ipc_platform_file.h" | 25 #include "ipc/ipc_platform_file.h" |
(...skipping 541 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
567 | 567 |
568 // Record a sample string to a Rappor metric. | 568 // Record a sample string to a Rappor metric. |
569 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRappor, | 569 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRappor, |
570 std::string /* metric */, | 570 std::string /* metric */, |
571 std::string /* sample */) | 571 std::string /* sample */) |
572 | 572 |
573 // Record a domain and registry of a url to a Rappor metric. | 573 // Record a domain and registry of a url to a Rappor metric. |
574 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRapporURL, | 574 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRapporURL, |
575 std::string /* metric */, | 575 std::string /* metric */, |
576 GURL /* sample url */) | 576 GURL /* sample url */) |
OLD | NEW |