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

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

Issue 10825073: Stop using ScopedAllowIO in content::ResourceDispatcherHostImpl (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove const Created 8 years, 3 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
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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 IPC_STRUCT_END() 44 IPC_STRUCT_END()
45 45
46 IPC_STRUCT_BEGIN(AutomationURLResponse) 46 IPC_STRUCT_BEGIN(AutomationURLResponse)
47 IPC_STRUCT_MEMBER(std::string, mime_type) 47 IPC_STRUCT_MEMBER(std::string, mime_type)
48 IPC_STRUCT_MEMBER(std::string, headers) 48 IPC_STRUCT_MEMBER(std::string, headers)
49 IPC_STRUCT_MEMBER(int64, content_length) 49 IPC_STRUCT_MEMBER(int64, content_length)
50 IPC_STRUCT_MEMBER(base::Time, last_modified) 50 IPC_STRUCT_MEMBER(base::Time, last_modified)
51 IPC_STRUCT_MEMBER(std::string, redirect_url) 51 IPC_STRUCT_MEMBER(std::string, redirect_url)
52 IPC_STRUCT_MEMBER(int, redirect_status) 52 IPC_STRUCT_MEMBER(int, redirect_status)
53 IPC_STRUCT_MEMBER(net::HostPortPair, socket_address) 53 IPC_STRUCT_MEMBER(net::HostPortPair, socket_address)
54 IPC_STRUCT_MEMBER(uint64, upload_size)
54 IPC_STRUCT_END() 55 IPC_STRUCT_END()
55 56
56 IPC_STRUCT_BEGIN(ExternalTabSettings) 57 IPC_STRUCT_BEGIN(ExternalTabSettings)
57 IPC_STRUCT_MEMBER(gfx::NativeWindow, parent) 58 IPC_STRUCT_MEMBER(gfx::NativeWindow, parent)
58 IPC_STRUCT_MEMBER(gfx::Rect, dimensions) 59 IPC_STRUCT_MEMBER(gfx::Rect, dimensions)
59 IPC_STRUCT_MEMBER(unsigned int, style) 60 IPC_STRUCT_MEMBER(unsigned int, style)
60 IPC_STRUCT_MEMBER(bool, is_incognito) 61 IPC_STRUCT_MEMBER(bool, is_incognito)
61 IPC_STRUCT_MEMBER(bool, load_requests_via_automation) 62 IPC_STRUCT_MEMBER(bool, load_requests_via_automation)
62 IPC_STRUCT_MEMBER(bool, handle_top_level_requests) 63 IPC_STRUCT_MEMBER(bool, handle_top_level_requests)
63 IPC_STRUCT_MEMBER(GURL, initial_url) 64 IPC_STRUCT_MEMBER(GURL, initial_url)
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after
211 static void Log(const param_type& p, std::string* l); 212 static void Log(const param_type& p, std::string* l);
212 }; 213 };
213 214
214 } // namespace IPC 215 } // namespace IPC
215 216
216 #endif // CHROME_COMMON_AUTOMATION_MESSAGES_H_ 217 #endif // CHROME_COMMON_AUTOMATION_MESSAGES_H_
217 218
218 // Keep this internal message file unchanged to preserve line numbering 219 // Keep this internal message file unchanged to preserve line numbering
219 // (and hence the dubious __LINE__-based message numberings) across versions. 220 // (and hence the dubious __LINE__-based message numberings) across versions.
220 #include "chrome/common/automation_messages_internal.h" 221 #include "chrome/common/automation_messages_internal.h"
OLDNEW
« no previous file with comments | « chrome/browser/automation/url_request_automation_job.cc ('k') | chrome_frame/chrome_frame_automation.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698