Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / content / public / browser / render_widget_host.h
index 3030873..a87e3fa 100644 (file)
@@ -181,7 +181,7 @@ class CONTENT_EXPORT RenderWidgetHost : public IPC::Sender {
       const gfx::Rect& src_rect,
       const gfx::Size& accelerated_dst_size,
       const base::Callback<void(bool, const SkBitmap&)>& callback,
-      const SkBitmap::Config& bitmap_config) = 0;
+      const SkColorType color_type) = 0;
   // Ensures that the view does not drop the backing store even when hidden.
   virtual bool CanCopyFromBackingStore() = 0;
 #if defined(OS_ANDROID)
@@ -189,42 +189,6 @@ class CONTENT_EXPORT RenderWidgetHost : public IPC::Sender {
   virtual void UnlockBackingStore() = 0;
 #endif
 
-  // Send a command to the renderer to turn on full accessibility.
-  virtual void EnableFullAccessibilityMode() = 0;
-
-  // Check whether this RenderWidget has full accessibility mode.
-  virtual bool IsFullAccessibilityModeForTesting() = 0;
-
-  // Send a command to the renderer to turn on tree only accessibility.
-  virtual void EnableTreeOnlyAccessibilityMode() = 0;
-
-  // Check whether this RenderWidget has tree-only accessibility mode.
-  virtual bool IsTreeOnlyAccessibilityModeForTesting() = 0;
-
-  // Relay a request from assistive technology to perform the default action
-  // on a given node.
-  virtual void AccessibilityDoDefaultAction(int object_id) = 0;
-
-  // Relay a request from assistive technology to set focus to a given node.
-  virtual void AccessibilitySetFocus(int object_id) = 0;
-
-  // Relay a request from assistive technology to make a given object
-  // visible by scrolling as many scrollable containers as necessary.
-  // In addition, if it's not possible to make the entire object visible,
-  // scroll so that the |subfocus| rect is visible at least. The subfocus
-  // rect is in local coordinates of the object itself.
-  virtual void AccessibilityScrollToMakeVisible(
-      int acc_obj_id, gfx::Rect subfocus) = 0;
-
-  // Relay a request from assistive technology to move a given object
-  // to a specific location, in the WebContents area coordinate space, i.e.
-  // (0, 0) is the top-left corner of the WebContents.
-  virtual void AccessibilityScrollToPoint(int acc_obj_id, gfx::Point point) = 0;
-
-  // Relay a request from assistive technology to set text selection.
-  virtual void AccessibilitySetTextSelection(
-      int acc_obj_id, int start_offset, int end_offset) = 0;
-
   // Forwards the given message to the renderer. These are called by
   // the view when it has received a message.
   virtual void ForwardMouseEvent(
@@ -290,7 +254,7 @@ class CONTENT_EXPORT RenderWidgetHost : public IPC::Sender {
   // Get the screen info corresponding to this render widget.
   virtual void GetWebScreenInfo(blink::WebScreenInfo* result) = 0;
 
-  virtual SkBitmap::Config PreferredReadbackFormat() = 0;
+  virtual SkColorType PreferredReadbackFormat() = 0;
 
  protected:
   friend class RenderWidgetHostImpl;