| 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 #ifndef CONTENT_COMMON_VIEW_MESSAGES_H_ |
| 6 #define CONTENT_COMMON_VIEW_MESSAGES_H_ |
| 7 |
| 5 // IPC messages for page rendering. | 8 // IPC messages for page rendering. |
| 6 // Multiply-included message file, hence no include guard. | 9 // Multiply-included message file, hence no include guard. |
| 7 | 10 |
| 8 #include <stddef.h> | 11 #include <stddef.h> |
| 9 #include <stdint.h> | 12 #include <stdint.h> |
| 10 | 13 |
| 11 #include "base/memory/shared_memory.h" | 14 #include "base/memory/shared_memory.h" |
| 12 #include "base/process/process.h" | 15 #include "base/process/process.h" |
| 13 #include "base/strings/string16.h" | 16 #include "base/strings/string16.h" |
| 14 #include "build/build_config.h" | 17 #include "build/build_config.h" |
| (...skipping 859 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 874 int /* y */) | 877 int /* y */) |
| 875 | 878 |
| 876 #elif defined(OS_MACOSX) | 879 #elif defined(OS_MACOSX) |
| 877 // Receives content of a web page as plain text. | 880 // Receives content of a web page as plain text. |
| 878 IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string) | 881 IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string) |
| 879 #endif | 882 #endif |
| 880 | 883 |
| 881 // Adding a new message? Stick to the sort order above: first platform | 884 // Adding a new message? Stick to the sort order above: first platform |
| 882 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform | 885 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform |
| 883 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. | 886 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. |
| 887 |
| 888 #endif // CONTENT_COMMON_VIEW_MESSAGES_H_ |
| OLD | NEW |