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

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

Issue 223163003: Remove the remaining automation-based tests. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 6 years, 8 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/common/automation_constants.cc ('k') | chrome/common/automation_messages_internal.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 // Multiply-included message file, no traditional include guard.
6 #include <string>
7 #include <vector>
8
9 #include "base/basictypes.h"
10 #include "base/memory/ref_counted.h"
11 #include "chrome/common/automation_constants.h"
12 #include "chrome/common/common_param_traits.h"
13 #include "content/public/common/common_param_traits.h"
14 #include "content/public/common/page_type.h"
15 #include "ipc/ipc_message_macros.h"
16 #include "ipc/ipc_message_utils.h"
17 #include "ui/gfx/rect.h"
18 #include "url/gurl.h"
19
20 IPC_ENUM_TRAITS(AutomationMsg_NavigationResponseValues)
21 IPC_ENUM_TRAITS(content::PageType)
22
23 IPC_STRUCT_BEGIN(AutomationMsg_Find_Params)
24 // The word(s) to find on the page.
25 IPC_STRUCT_MEMBER(base::string16, search_string)
26
27 // Whether to search forward or backward within the page.
28 IPC_STRUCT_MEMBER(bool, forward)
29
30 // Whether search should be Case sensitive.
31 IPC_STRUCT_MEMBER(bool, match_case)
32
33 // Whether this operation is first request (Find) or a follow-up (FindNext).
34 IPC_STRUCT_MEMBER(bool, find_next)
35 IPC_STRUCT_END()
36
37 // Keep this internal message file unchanged to preserve line numbering
38 // (and hence the dubious __LINE__-based message numberings) across versions.
39 #include "chrome/common/automation_messages_internal.h"
OLDNEW
« no previous file with comments | « chrome/common/automation_constants.cc ('k') | chrome/common/automation_messages_internal.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698