| 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 // IPC messages for page rendering. | 5 // IPC messages for page rendering. |
| 6 // Multiply-included message file, hence no include guard. | 6 // Multiply-included message file, hence no include guard. |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| 11 #include "base/memory/shared_memory.h" | 11 #include "base/memory/shared_memory.h" |
| 12 #include "base/process/process.h" | 12 #include "base/process/process.h" |
| 13 #include "base/strings/string16.h" | 13 #include "base/strings/string16.h" |
| 14 #include "build/build_config.h" | 14 #include "build/build_config.h" |
| 15 #include "cc/ipc/cc_param_traits.h" |
| 15 #include "cc/output/begin_frame_args.h" | 16 #include "cc/output/begin_frame_args.h" |
| 16 #include "cc/output/compositor_frame.h" | 17 #include "cc/output/compositor_frame.h" |
| 17 #include "cc/output/compositor_frame_ack.h" | 18 #include "cc/output/compositor_frame_ack.h" |
| 18 #include "cc/resources/shared_bitmap.h" | 19 #include "cc/resources/shared_bitmap.h" |
| 19 #include "content/common/content_export.h" | 20 #include "content/common/content_export.h" |
| 20 #include "content/common/content_param_traits.h" | 21 #include "content/common/content_param_traits.h" |
| 21 #include "content/common/date_time_suggestion.h" | 22 #include "content/common/date_time_suggestion.h" |
| 22 #include "content/common/frame_replication_state.h" | 23 #include "content/common/frame_replication_state.h" |
| 23 #include "content/common/navigation_gesture.h" | 24 #include "content/common/navigation_gesture.h" |
| 24 #include "content/common/resize_params.h" | 25 #include "content/common/resize_params.h" |
| (...skipping 1222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1247 int /* y */) | 1248 int /* y */) |
| 1248 | 1249 |
| 1249 #elif defined(OS_MACOSX) | 1250 #elif defined(OS_MACOSX) |
| 1250 // Receives content of a web page as plain text. | 1251 // Receives content of a web page as plain text. |
| 1251 IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string) | 1252 IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string) |
| 1252 #endif | 1253 #endif |
| 1253 | 1254 |
| 1254 // Adding a new message? Stick to the sort order above: first platform | 1255 // Adding a new message? Stick to the sort order above: first platform |
| 1255 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform | 1256 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform |
| 1256 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. | 1257 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. |
| OLD | NEW |