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> |
11 | 11 |
12 #include "base/files/file_path.h" | 12 #include "base/files/file_path.h" |
13 #include "base/memory/shared_memory.h" | 13 #include "base/memory/shared_memory.h" |
14 #include "base/process/process.h" | 14 #include "base/process/process.h" |
15 #include "base/strings/string16.h" | 15 #include "base/strings/string16.h" |
16 #include "base/strings/stringprintf.h" | 16 #include "base/strings/stringprintf.h" |
17 #include "base/time/time.h" | 17 #include "base/time/time.h" |
18 #include "base/values.h" | 18 #include "base/values.h" |
19 #include "build/build_config.h" | 19 #include "build/build_config.h" |
20 #include "chrome/common/common_param_traits.h" | 20 #include "chrome/common/common_param_traits.h" |
21 #include "chrome/common/instant_types.h" | 21 #include "chrome/common/instant_types.h" |
22 #include "chrome/common/ntp_logging_events.h" | 22 #include "chrome/common/ntp_logging_events.h" |
23 #include "chrome/common/omnibox_focus_state.h" | |
24 #include "chrome/common/search_provider.h" | 23 #include "chrome/common/search_provider.h" |
25 #include "chrome/common/web_application_info.h" | 24 #include "chrome/common/web_application_info.h" |
26 #include "components/content_settings/core/common/content_settings.h" | 25 #include "components/content_settings/core/common/content_settings.h" |
27 #include "components/content_settings/core/common/content_settings_pattern.h" | 26 #include "components/content_settings/core/common/content_settings_pattern.h" |
28 #include "components/nacl/common/nacl_types.h" | 27 #include "components/nacl/common/nacl_types.h" |
| 28 #include "components/omnibox/common/omnibox_focus_state.h" |
29 #include "content/public/common/common_param_traits.h" | 29 #include "content/public/common/common_param_traits.h" |
30 #include "content/public/common/referrer.h" | 30 #include "content/public/common/referrer.h" |
31 #include "content/public/common/top_controls_state.h" | 31 #include "content/public/common/top_controls_state.h" |
32 #include "ipc/ipc_channel_handle.h" | 32 #include "ipc/ipc_channel_handle.h" |
33 #include "ipc/ipc_message_macros.h" | 33 #include "ipc/ipc_message_macros.h" |
34 #include "ipc/ipc_platform_file.h" | 34 #include "ipc/ipc_platform_file.h" |
35 #include "third_party/WebKit/public/platform/modules/app_banner/WebAppBannerProm
ptReply.h" | 35 #include "third_party/WebKit/public/platform/modules/app_banner/WebAppBannerProm
ptReply.h" |
36 #include "third_party/WebKit/public/web/WebCache.h" | 36 #include "third_party/WebKit/public/web/WebCache.h" |
37 #include "third_party/WebKit/public/web/WebConsoleMessage.h" | 37 #include "third_party/WebKit/public/web/WebConsoleMessage.h" |
38 #include "third_party/skia/include/core/SkBitmap.h" | 38 #include "third_party/skia/include/core/SkBitmap.h" |
(...skipping 554 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
593 | 593 |
594 // Record a sample string to a Rappor metric. | 594 // Record a sample string to a Rappor metric. |
595 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRappor, | 595 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRappor, |
596 std::string /* metric */, | 596 std::string /* metric */, |
597 std::string /* sample */) | 597 std::string /* sample */) |
598 | 598 |
599 // Record a domain and registry of a url to a Rappor metric. | 599 // Record a domain and registry of a url to a Rappor metric. |
600 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRapporURL, | 600 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRapporURL, |
601 std::string /* metric */, | 601 std::string /* metric */, |
602 GURL /* sample url */) | 602 GURL /* sample url */) |
OLD | NEW |