| Index: content/browser/web_contents/web_contents_view_aura.h
|
| diff --git a/content/browser/web_contents/web_contents_view_aura.h b/content/browser/web_contents/web_contents_view_aura.h
|
| index f619352dbca4c1556346087645f40b88b8a6acea..885ec9df5f50f7b63775cf3a0bb400d77ad7029f 100644
|
| --- a/content/browser/web_contents/web_contents_view_aura.h
|
| +++ b/content/browser/web_contents/web_contents_view_aura.h
|
| @@ -28,6 +28,7 @@ class DropTargetEvent;
|
| namespace content {
|
| class OverscrollNavigationOverlay;
|
| class ShadowWindow;
|
| +class TouchEditableImplAura;
|
| class WebContentsViewDelegate;
|
| class WebContentsImpl;
|
| class WebDragDestDelegate;
|
| @@ -92,6 +93,8 @@ class CONTENT_EXPORT WebContentsViewAura
|
| // overscroll (|delta_x|, in pixels).
|
| void UpdateOverscrollWindowBrightness(float delta_x);
|
|
|
| + void AttachTouchEditableToRenderView();
|
| +
|
| // Overridden from WebContentsView:
|
| virtual gfx::NativeView GetNativeView() const OVERRIDE;
|
| virtual gfx::NativeView GetContentNativeView() const OVERRIDE;
|
| @@ -224,6 +227,8 @@ class CONTENT_EXPORT WebContentsViewAura
|
| // navigation triggered by the overscroll gesture.
|
| scoped_ptr<OverscrollNavigationOverlay> navigation_overlay_;
|
|
|
| + scoped_ptr<TouchEditableImplAura> touch_editable_;
|
| +
|
| DISALLOW_COPY_AND_ASSIGN(WebContentsViewAura);
|
| };
|
|
|
|
|