| 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> |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 #include "chrome/common/omnibox_focus_state.h" | 25 #include "chrome/common/omnibox_focus_state.h" |
| 26 #include "chrome/common/search_provider.h" | 26 #include "chrome/common/search_provider.h" |
| 27 #include "components/nacl/common/nacl_types.h" | 27 #include "components/nacl/common/nacl_types.h" |
| 28 #include "content/public/common/common_param_traits.h" | 28 #include "content/public/common/common_param_traits.h" |
| 29 #include "content/public/common/referrer.h" | 29 #include "content/public/common/referrer.h" |
| 30 #include "content/public/common/top_controls_state.h" | 30 #include "content/public/common/top_controls_state.h" |
| 31 #include "extensions/common/stack_frame.h" | 31 #include "extensions/common/stack_frame.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/skia/include/core/SkBitmap.h" | |
| 36 #include "third_party/WebKit/public/web/WebCache.h" | 35 #include "third_party/WebKit/public/web/WebCache.h" |
| 37 #include "third_party/WebKit/public/web/WebConsoleMessage.h" | 36 #include "third_party/WebKit/public/web/WebConsoleMessage.h" |
| 37 #include "third_party/skia/include/core/SkBitmap.h" |
| 38 #include "ui/base/window_open_disposition.h" | 38 #include "ui/base/window_open_disposition.h" |
| 39 #include "ui/gfx/ipc/gfx_param_traits.h" |
| 39 #include "ui/gfx/rect.h" | 40 #include "ui/gfx/rect.h" |
| 40 | 41 |
| 41 // Singly-included section for enums and custom IPC traits. | 42 // Singly-included section for enums and custom IPC traits. |
| 42 #ifndef CHROME_COMMON_RENDER_MESSAGES_H_ | 43 #ifndef CHROME_COMMON_RENDER_MESSAGES_H_ |
| 43 #define CHROME_COMMON_RENDER_MESSAGES_H_ | 44 #define CHROME_COMMON_RENDER_MESSAGES_H_ |
| 44 | 45 |
| 45 // This enum is inside a struct so that we can forward-declare the struct in | 46 // This enum is inside a struct so that we can forward-declare the struct in |
| 46 // others headers without having to include this one. | 47 // others headers without having to include this one. |
| 47 struct ChromeViewHostMsg_GetPluginInfo_Status { | 48 struct ChromeViewHostMsg_GetPluginInfo_Status { |
| 48 enum Value { | 49 enum Value { |
| (...skipping 659 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 708 base::string16 /* source */, | 709 base::string16 /* source */, |
| 709 extensions::StackTrace /* stack trace */, | 710 extensions::StackTrace /* stack trace */, |
| 710 int32 /* severity level */) | 711 int32 /* severity level */) |
| 711 #endif | 712 #endif |
| 712 | 713 |
| 713 #if defined(ENABLE_PLUGINS) | 714 #if defined(ENABLE_PLUGINS) |
| 714 // Sent by the renderer to check if crash reporting is enabled. | 715 // Sent by the renderer to check if crash reporting is enabled. |
| 715 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_IsCrashReportingEnabled, | 716 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_IsCrashReportingEnabled, |
| 716 bool /* enabled */) | 717 bool /* enabled */) |
| 717 #endif | 718 #endif |
| OLD | NEW |