| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_COMMON_AUTOMATION_CONSTANTS_H__ | 5 #ifndef CHROME_COMMON_AUTOMATION_CONSTANTS_H__ |
| 6 #define CHROME_COMMON_AUTOMATION_CONSTANTS_H__ | 6 #define CHROME_COMMON_AUTOMATION_CONSTANTS_H__ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 namespace automation { | 9 namespace automation { |
| 10 | 10 |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 // Used in the AutomationMsg_GetExtensionProperty to identify which extension | 87 // Used in the AutomationMsg_GetExtensionProperty to identify which extension |
| 88 // property should be retrieved, instead of having separate messages for each | 88 // property should be retrieved, instead of having separate messages for each |
| 89 // property. | 89 // property. |
| 90 enum AutomationMsg_ExtensionProperty { | 90 enum AutomationMsg_ExtensionProperty { |
| 91 AUTOMATION_MSG_EXTENSION_ID = 0, | 91 AUTOMATION_MSG_EXTENSION_ID = 0, |
| 92 AUTOMATION_MSG_EXTENSION_NAME, | 92 AUTOMATION_MSG_EXTENSION_NAME, |
| 93 AUTOMATION_MSG_EXTENSION_VERSION, | 93 AUTOMATION_MSG_EXTENSION_VERSION, |
| 94 AUTOMATION_MSG_EXTENSION_BROWSER_ACTION_INDEX, | 94 AUTOMATION_MSG_EXTENSION_BROWSER_ACTION_INDEX, |
| 95 }; | 95 }; |
| 96 | 96 |
| 97 // Specifies the font size on a page which is requested by an automation |
| 98 // client. |
| 99 enum AutomationPageFontSize { |
| 100 SMALLEST_FONT = 8, |
| 101 SMALL_FONT = 12, |
| 102 MEDIUM_FONT = 16, |
| 103 LARGE_FONT = 24, |
| 104 LARGEST_FONT = 36 |
| 105 }; |
| 106 |
| 107 enum FindInPageDirection { BACK = 0, FWD = 1 }; |
| 108 enum FindInPageCase { IGNORE_CASE = 0, CASE_SENSITIVE = 1 }; |
| 97 | 109 |
| 98 #endif // CHROME_COMMON_AUTOMATION_CONSTANTS_H__ | 110 #endif // CHROME_COMMON_AUTOMATION_CONSTANTS_H__ |
| OLD | NEW |