| 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/common_param_traits.h" |
| 14 #include "chrome/common/instant_types.h" | 15 #include "chrome/common/instant_types.h" |
| 15 #include "chrome/common/ntp_logging_events.h" | 16 #include "chrome/common/ntp_logging_events.h" |
| 16 #include "chrome/common/search_provider.h" | 17 #include "chrome/common/search_provider.h" |
| 17 #include "chrome/common/web_application_info.h" | 18 #include "chrome/common/web_application_info.h" |
| 18 #include "components/content_settings/core/common/content_settings.h" | |
| 19 #include "components/content_settings/core/common/content_settings_pattern.h" | |
| 20 #include "components/omnibox/common/omnibox_focus_state.h" | 19 #include "components/omnibox/common/omnibox_focus_state.h" |
| 20 #include "content/public/common/common_param_traits.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" | |
| 23 #include "ipc/ipc_channel_handle.h" | 22 #include "ipc/ipc_channel_handle.h" |
| 24 #include "ipc/ipc_message_macros.h" | 23 #include "ipc/ipc_message_macros.h" |
| 25 #include "ipc/ipc_platform_file.h" | 24 #include "ipc/ipc_platform_file.h" |
| 26 #include "third_party/WebKit/public/platform/modules/app_banner/WebAppBannerProm
ptReply.h" | 25 #include "third_party/WebKit/public/platform/modules/app_banner/WebAppBannerProm
ptReply.h" |
| 27 #include "third_party/WebKit/public/web/WebConsoleMessage.h" | 26 #include "third_party/WebKit/public/web/WebConsoleMessage.h" |
| 28 #include "third_party/WebKit/public/web/WebWindowFeatures.h" | |
| 29 #include "ui/base/window_open_disposition.h" | |
| 30 #include "url/ipc/url_param_traits.h" | |
| 31 | 27 |
| 32 // Singly-included section for enums and custom IPC traits. | 28 // Singly-included section for enums and custom IPC traits. |
| 33 #ifndef CHROME_COMMON_RENDER_MESSAGES_H_ | 29 #ifndef CHROME_COMMON_RENDER_MESSAGES_H_ |
| 34 #define CHROME_COMMON_RENDER_MESSAGES_H_ | 30 #define CHROME_COMMON_RENDER_MESSAGES_H_ |
| 35 | 31 |
| 36 enum class ChromeViewHostMsg_GetPluginInfo_Status { | 32 enum class ChromeViewHostMsg_GetPluginInfo_Status { |
| 37 kAllowed, | 33 kAllowed, |
| 38 kBlocked, | 34 kBlocked, |
| 39 kBlockedByPolicy, | 35 kBlockedByPolicy, |
| 40 kDisabled, | 36 kDisabled, |
| (...skipping 534 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 575 | 571 |
| 576 // Record a sample string to a Rappor metric. | 572 // Record a sample string to a Rappor metric. |
| 577 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRappor, | 573 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRappor, |
| 578 std::string /* metric */, | 574 std::string /* metric */, |
| 579 std::string /* sample */) | 575 std::string /* sample */) |
| 580 | 576 |
| 581 // 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. |
| 582 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRapporURL, | 578 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRapporURL, |
| 583 std::string /* metric */, | 579 std::string /* metric */, |
| 584 GURL /* sample url */) | 580 GURL /* sample url */) |
| OLD | NEW |