OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 CHROME_COMMON_RENDER_MESSAGES_H_ | 5 #ifndef CHROME_COMMON_RENDER_MESSAGES_H_ |
6 #define CHROME_COMMON_RENDER_MESSAGES_H_ | 6 #define CHROME_COMMON_RENDER_MESSAGES_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
65 } | 65 } |
66 } | 66 } |
67 | 67 |
68 struct AudioBuffersState; | 68 struct AudioBuffersState; |
69 class ExtensionExtent; | 69 class ExtensionExtent; |
70 class GURL; | 70 class GURL; |
71 class SkBitmap; | 71 class SkBitmap; |
72 class URLPattern; | 72 class URLPattern; |
73 struct ContextMenuParams; | 73 struct ContextMenuParams; |
74 struct EditCommand; | 74 struct EditCommand; |
75 struct PP_Flash_NetAddress; | |
76 struct ResourceResponseHead; | 75 struct ResourceResponseHead; |
77 struct SyncLoadResult; | 76 struct SyncLoadResult; |
78 struct RendererPreferences; | 77 struct RendererPreferences; |
79 struct WebDropData; | 78 struct WebDropData; |
80 struct WebMenuItem; | 79 struct WebMenuItem; |
81 struct WebPreferences; | 80 struct WebPreferences; |
82 | 81 |
83 // Forward declarations of structures used to store data for when we have a lot | 82 // Forward declarations of structures used to store data for when we have a lot |
84 // of parameters. | 83 // of parameters. |
85 struct ViewMsg_Navigate_Params; | 84 struct ViewMsg_Navigate_Params; |
(...skipping 443 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
529 static void Write(Message* m, const param_type& p); | 528 static void Write(Message* m, const param_type& p); |
530 static bool Read(const Message* m, void** iter, param_type* p); | 529 static bool Read(const Message* m, void** iter, param_type* p); |
531 static void Log(const param_type& p, std::string* l); | 530 static void Log(const param_type& p, std::string* l); |
532 }; | 531 }; |
533 | 532 |
534 } // namespace IPC | 533 } // namespace IPC |
535 | 534 |
536 #include "chrome/common/render_messages_internal.h" | 535 #include "chrome/common/render_messages_internal.h" |
537 | 536 |
538 #endif // CHROME_COMMON_RENDER_MESSAGES_H_ | 537 #endif // CHROME_COMMON_RENDER_MESSAGES_H_ |
OLD | NEW |