| 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/features.h" | 14 #include "chrome/common/features.h" |
| 15 #include "chrome/common/instant_struct_traits.h" | 15 #include "chrome/common/instant_struct_traits.h" |
| 16 #include "chrome/common/search/instant_types.h" | 16 #include "chrome/common/search/instant_types.h" |
| 17 #include "chrome/common/search/ntp_logging_events.h" | 17 #include "chrome/common/search/ntp_logging_events.h" |
| 18 #include "chrome/common/web_application_info.h" | 18 #include "chrome/common/web_application_info.h" |
| 19 #include "components/content_settings/core/common/content_settings.h" | 19 #include "components/content_settings/core/common/content_settings.h" |
| 20 #include "components/content_settings/core/common/content_settings_pattern.h" | 20 #include "components/content_settings/core/common/content_settings_pattern.h" |
| 21 #include "components/content_settings/core/common/content_settings_types.h" | 21 #include "components/content_settings/core/common/content_settings_types.h" |
| 22 #include "components/ntp_tiles/ntp_tile_source.h" | |
| 23 #include "components/omnibox/common/omnibox_focus_state.h" | 22 #include "components/omnibox/common/omnibox_focus_state.h" |
| 24 #include "content/public/common/browser_controls_state.h" | 23 #include "content/public/common/browser_controls_state.h" |
| 25 #include "content/public/common/webplugininfo.h" | 24 #include "content/public/common/webplugininfo.h" |
| 26 #include "ipc/ipc_channel_handle.h" | 25 #include "ipc/ipc_channel_handle.h" |
| 27 #include "ipc/ipc_message_macros.h" | 26 #include "ipc/ipc_message_macros.h" |
| 28 #include "ipc/ipc_platform_file.h" | 27 #include "ipc/ipc_platform_file.h" |
| 29 #include "ppapi/features/features.h" | 28 #include "ppapi/features/features.h" |
| 30 #include "third_party/WebKit/public/web/WebConsoleMessage.h" | 29 #include "third_party/WebKit/public/web/WebConsoleMessage.h" |
| 31 #include "third_party/WebKit/public/web/window_features.mojom.h" | 30 #include "third_party/WebKit/public/web/window_features.mojom.h" |
| 32 #include "ui/base/window_open_disposition.h" | 31 #include "ui/base/window_open_disposition.h" |
| (...skipping 301 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 334 // process so that they can be assigned to an Instant renderer. | 333 // process so that they can be assigned to an Instant renderer. |
| 335 IPC_MESSAGE_CONTROL2(ChromeViewMsg_SetSearchURLs, | 334 IPC_MESSAGE_CONTROL2(ChromeViewMsg_SetSearchURLs, |
| 336 std::vector<GURL> /* search_urls */, | 335 std::vector<GURL> /* search_urls */, |
| 337 GURL /* new_tab_page_url */) | 336 GURL /* new_tab_page_url */) |
| 338 | 337 |
| 339 #if BUILDFLAG(ENABLE_PLUGINS) | 338 #if BUILDFLAG(ENABLE_PLUGINS) |
| 340 // Sent by the renderer to check if crash reporting is enabled. | 339 // Sent by the renderer to check if crash reporting is enabled. |
| 341 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_IsCrashReportingEnabled, | 340 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_IsCrashReportingEnabled, |
| 342 bool /* enabled */) | 341 bool /* enabled */) |
| 343 #endif | 342 #endif |
| OLD | NEW |