Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(670)

Side by Side Diff: chrome/common/automation_messages.h

Issue 20003004: reland crrev.com/212927 Move webkitplatformsupport_impl and related from glue to child (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase & allocator dep for components_unittests in shared_library2 Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/chrome_renderer.gypi ('k') | chrome/renderer/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 message file, no traditional include guard. 5 // Multiply-included message file, no traditional include guard.
6 #include <string> 6 #include <string>
7 #include <vector> 7 #include <vector>
8 8
9 #include "base/basictypes.h" 9 #include "base/basictypes.h"
10 #include "base/memory/ref_counted.h" 10 #include "base/memory/ref_counted.h"
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
138 IPC_STRUCT_END() 138 IPC_STRUCT_END()
139 139
140 #endif // defined(OS_WIN) 140 #endif // defined(OS_WIN)
141 141
142 IPC_STRUCT_BEGIN(AutomationURLRequest) 142 IPC_STRUCT_BEGIN(AutomationURLRequest)
143 IPC_STRUCT_MEMBER(std::string, url) 143 IPC_STRUCT_MEMBER(std::string, url)
144 IPC_STRUCT_MEMBER(std::string, method) 144 IPC_STRUCT_MEMBER(std::string, method)
145 IPC_STRUCT_MEMBER(std::string, referrer) 145 IPC_STRUCT_MEMBER(std::string, referrer)
146 IPC_STRUCT_MEMBER(std::string, extra_request_headers) 146 IPC_STRUCT_MEMBER(std::string, extra_request_headers)
147 IPC_STRUCT_MEMBER(scoped_refptr<net::UploadData>, upload_data) 147 IPC_STRUCT_MEMBER(scoped_refptr<net::UploadData>, upload_data)
148 IPC_STRUCT_MEMBER(int, resource_type) // see webkit/glue/resource_type.h 148 IPC_STRUCT_MEMBER(int, resource_type) // see webkit/common/resource_type.h
149 IPC_STRUCT_MEMBER(int, load_flags) // see net/base/load_flags.h 149 IPC_STRUCT_MEMBER(int, load_flags) // see net/base/load_flags.h
150 IPC_STRUCT_END() 150 IPC_STRUCT_END()
151 151
152 // Singly-included section for struct and custom IPC traits. 152 // Singly-included section for struct and custom IPC traits.
153 #ifndef CHROME_COMMON_AUTOMATION_MESSAGES_H_ 153 #ifndef CHROME_COMMON_AUTOMATION_MESSAGES_H_
154 #define CHROME_COMMON_AUTOMATION_MESSAGES_H_ 154 #define CHROME_COMMON_AUTOMATION_MESSAGES_H_
155 155
156 // This struct passes information about the context menu in Chrome stored 156 // This struct passes information about the context menu in Chrome stored
157 // as a ui::MenuModel to Chrome Frame. It is basically a container of 157 // as a ui::MenuModel to Chrome Frame. It is basically a container of
158 // items that go in the menu. An item may be a submenu, so the data 158 // items that go in the menu. An item may be a submenu, so the data
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
215 static void Log(const param_type& p, std::string* l); 215 static void Log(const param_type& p, std::string* l);
216 }; 216 };
217 217
218 } // namespace IPC 218 } // namespace IPC
219 219
220 #endif // CHROME_COMMON_AUTOMATION_MESSAGES_H_ 220 #endif // CHROME_COMMON_AUTOMATION_MESSAGES_H_
221 221
222 // Keep this internal message file unchanged to preserve line numbering 222 // Keep this internal message file unchanged to preserve line numbering
223 // (and hence the dubious __LINE__-based message numberings) across versions. 223 // (and hence the dubious __LINE__-based message numberings) across versions.
224 #include "chrome/common/automation_messages_internal.h" 224 #include "chrome/common/automation_messages_internal.h"
OLDNEW
« no previous file with comments | « chrome/chrome_renderer.gypi ('k') | chrome/renderer/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698