Upstream version 10.39.225.0
[platform/framework/web/crosswalk.git] / src / chrome / browser / accessibility / accessibility_extension_api_constants.cc
index d4f8051..dbf6c13 100644 (file)
@@ -23,6 +23,7 @@ const char kCheckedKey[] = "details.isChecked";
 const char kHasSubmenuKey[] = "details.hasSubmenu";
 const char kMessageKey[] = "message";
 const char kStringValueKey[] = "details.stringValue";
+const char kBoundsKey[] = "bounds";
 
 // Types of controls that can receive accessibility events.
 const char kTypeAlert[] = "alert";
@@ -42,4 +43,13 @@ const char kTypeTree[] = "tree";
 const char kTypeTreeItem[] = "treeitem";
 const char kTypeWindow[] = "window";
 
+// ScreenRect fields.
+const char kLeft[] = "left";
+const char kTop[] = "top";
+const char kWidth[] = "width";
+const char kHeight[] = "height";
+
+// Errors.
+const char kErrorNotSupported[] = "This API is not supported on this platform.";
+
 }  // namespace extension_accessibility_api_constants