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 // 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 11 matching lines...) Expand all Loading... |
22 #include "net/url_request/url_request_status.h" | 22 #include "net/url_request/url_request_status.h" |
23 #include "ui/base/window_open_disposition.h" | 23 #include "ui/base/window_open_disposition.h" |
24 #include "ui/gfx/rect.h" | 24 #include "ui/gfx/rect.h" |
25 #include "url/gurl.h" | 25 #include "url/gurl.h" |
26 | 26 |
27 IPC_ENUM_TRAITS(AutomationMsg_NavigationResponseValues) | 27 IPC_ENUM_TRAITS(AutomationMsg_NavigationResponseValues) |
28 IPC_ENUM_TRAITS(content::PageType) | 28 IPC_ENUM_TRAITS(content::PageType) |
29 | 29 |
30 IPC_STRUCT_BEGIN(AutomationMsg_Find_Params) | 30 IPC_STRUCT_BEGIN(AutomationMsg_Find_Params) |
31 // The word(s) to find on the page. | 31 // The word(s) to find on the page. |
32 IPC_STRUCT_MEMBER(string16, search_string) | 32 IPC_STRUCT_MEMBER(base::string16, search_string) |
33 | 33 |
34 // Whether to search forward or backward within the page. | 34 // Whether to search forward or backward within the page. |
35 IPC_STRUCT_MEMBER(bool, forward) | 35 IPC_STRUCT_MEMBER(bool, forward) |
36 | 36 |
37 // Whether search should be Case sensitive. | 37 // Whether search should be Case sensitive. |
38 IPC_STRUCT_MEMBER(bool, match_case) | 38 IPC_STRUCT_MEMBER(bool, match_case) |
39 | 39 |
40 // Whether this operation is first request (Find) or a follow-up (FindNext). | 40 // Whether this operation is first request (Find) or a follow-up (FindNext). |
41 IPC_STRUCT_MEMBER(bool, find_next) | 41 IPC_STRUCT_MEMBER(bool, find_next) |
42 IPC_STRUCT_END() | 42 IPC_STRUCT_END() |
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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" |
OLD | NEW |