OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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_TEST_AUTOMATION_AUTOMATION_MESSAGES_H__ | 5 #ifndef CHROME_TEST_AUTOMATION_AUTOMATION_MESSAGES_H__ |
6 #define CHROME_TEST_AUTOMATION_AUTOMATION_MESSAGES_H__ | 6 #define CHROME_TEST_AUTOMATION_AUTOMATION_MESSAGES_H__ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
11 #include "base/gfx/rect.h" | 11 #include "base/gfx/rect.h" |
12 #include "chrome/browser/tab_contents/navigation_entry.h" | 12 #include "chrome/browser/tab_contents/navigation_entry.h" |
13 #include "chrome/browser/tab_contents/security_style.h" | 13 #include "chrome/browser/tab_contents/security_style.h" |
14 #include "chrome/common/ipc_message_utils.h" | 14 #include "chrome/common/common_param_traits.h" |
15 #include "chrome/test/automation/automation_constants.h" | 15 #include "chrome/test/automation/automation_constants.h" |
| 16 #include "ipc/ipc_message_utils.h" |
16 | 17 |
17 struct AutomationMsg_Find_Params { | 18 struct AutomationMsg_Find_Params { |
18 // Unused value, which exists only for backwards compat. | 19 // Unused value, which exists only for backwards compat. |
19 int unused; | 20 int unused; |
20 | 21 |
21 // The word(s) to find on the page. | 22 // The word(s) to find on the page. |
22 string16 search_string; | 23 string16 search_string; |
23 | 24 |
24 // Whether to search forward or backward within the page. | 25 // Whether to search forward or backward within the page. |
25 bool forward; | 26 bool forward; |
(...skipping 308 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
334 l->append(L", "); | 335 l->append(L", "); |
335 LogParam(p.load_requests_via_automation, l); | 336 LogParam(p.load_requests_via_automation, l); |
336 l->append(L")"); | 337 l->append(L")"); |
337 } | 338 } |
338 }; | 339 }; |
339 | 340 |
340 } // namespace IPC | 341 } // namespace IPC |
341 | 342 |
342 #define MESSAGES_INTERNAL_FILE \ | 343 #define MESSAGES_INTERNAL_FILE \ |
343 "chrome/test/automation/automation_messages_internal.h" | 344 "chrome/test/automation/automation_messages_internal.h" |
344 #include "chrome/common/ipc_message_macros.h" | 345 #include "ipc/ipc_message_macros.h" |
345 | 346 |
346 #endif // CHROME_TEST_AUTOMATION_AUTOMATION_MESSAGES_H__ | 347 #endif // CHROME_TEST_AUTOMATION_AUTOMATION_MESSAGES_H__ |
OLD | NEW |