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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
100 struct ViewHostMsg_DidPrintPage_Params; | 100 struct ViewHostMsg_DidPrintPage_Params; |
101 struct ViewHostMsg_Audio_CreateStream_Params; | 101 struct ViewHostMsg_Audio_CreateStream_Params; |
102 struct ViewHostMsg_ShowPopup_Params; | 102 struct ViewHostMsg_ShowPopup_Params; |
103 struct ViewHostMsg_ScriptedPrint_Params; | 103 struct ViewHostMsg_ScriptedPrint_Params; |
104 struct ViewMsg_ExecuteCode_Params; | 104 struct ViewMsg_ExecuteCode_Params; |
105 struct ViewHostMsg_CreateWorker_Params; | 105 struct ViewHostMsg_CreateWorker_Params; |
106 struct ViewHostMsg_ShowNotification_Params; | 106 struct ViewHostMsg_ShowNotification_Params; |
107 struct ViewMsg_New_Params; | 107 struct ViewMsg_New_Params; |
108 struct ViewHostMsg_CreateWindow_Params; | 108 struct ViewHostMsg_CreateWindow_Params; |
109 struct ViewHostMsg_RunFileChooser_Params; | 109 struct ViewHostMsg_RunFileChooser_Params; |
110 struct ViewMsg_ExtensionRendererInfo; | 110 struct ViewMsg_ExtensionLoaded_Params; |
111 struct ViewMsg_ExtensionsUpdated_Params; | |
112 struct ViewMsg_DeviceOrientationUpdated_Params; | 111 struct ViewMsg_DeviceOrientationUpdated_Params; |
113 struct ViewHostMsg_DomMessage_Params; | 112 struct ViewHostMsg_DomMessage_Params; |
114 struct ViewHostMsg_AccessibilityNotification_Params; | 113 struct ViewHostMsg_AccessibilityNotification_Params; |
115 | 114 |
116 // Values that may be OR'd together to form the 'flags' parameter of the | 115 // Values that may be OR'd together to form the 'flags' parameter of the |
117 // ViewMsg_EnablePreferredSizeChangedMode message. | 116 // ViewMsg_EnablePreferredSizeChangedMode message. |
118 enum ViewHostMsg_EnablePreferredSizeChangedMode_Flags { | 117 enum ViewHostMsg_EnablePreferredSizeChangedMode_Flags { |
119 kPreferredSizeNothing, | 118 kPreferredSizeNothing, |
120 kPreferredSizeWidth = 1 << 0, | 119 kPreferredSizeWidth = 1 << 0, |
121 // Requesting the height currently requires a polling loop in render_view.cc. | 120 // Requesting the height currently requires a polling loop in render_view.cc. |
(...skipping 436 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
558 static void Write(Message* m, const param_type& p); | 557 static void Write(Message* m, const param_type& p); |
559 static bool Read(const Message* m, void** iter, param_type* p); | 558 static bool Read(const Message* m, void** iter, param_type* p); |
560 static void Log(const param_type& p, std::string* l); | 559 static void Log(const param_type& p, std::string* l); |
561 }; | 560 }; |
562 | 561 |
563 } // namespace IPC | 562 } // namespace IPC |
564 | 563 |
565 #include "chrome/common/render_messages_internal.h" | 564 #include "chrome/common/render_messages_internal.h" |
566 | 565 |
567 #endif // CHROME_COMMON_RENDER_MESSAGES_H_ | 566 #endif // CHROME_COMMON_RENDER_MESSAGES_H_ |
OLD | NEW |