Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / chrome / browser / ui / autofill / autofill_popup_view_delegate.h
index e861b28..e4320fd 100644 (file)
@@ -10,6 +10,7 @@
 namespace gfx {
 class Point;
 class Rect;
+class RectF;
 }
 
 namespace autofill {
@@ -43,6 +44,12 @@ class AutofillPopupViewDelegate {
   // The view that the form field element sits in.
   virtual gfx::NativeView container_view() = 0;
 
+  // The bounds of the form field element (screen coordinates).
+  virtual const gfx::RectF& element_bounds() const = 0;
+
+  // If the current popup should be displayed in RTL mode.
+  virtual bool IsRTL() const = 0;
+
  protected:
   virtual ~AutofillPopupViewDelegate() {}
 };