| Index: content/renderer/render_view_impl.h
|
| diff --git a/content/renderer/render_view_impl.h b/content/renderer/render_view_impl.h
|
| index f3d55fa2f1518b70ee0c0ec7a86be16163f73f49..75b28b814a6ffec4aa4c14ab68d974d2ce612298 100644
|
| --- a/content/renderer/render_view_impl.h
|
| +++ b/content/renderer/render_view_impl.h
|
| @@ -497,6 +497,7 @@ class CONTENT_EXPORT RenderViewImpl
|
| void OnOrientationChange() override;
|
| ui::TextInputType GetTextInputType() override;
|
| void GetSelectionBounds(gfx::Rect* start, gfx::Rect* end) override;
|
| + void FocusChangeComplete() override;
|
| void GetCompositionCharacterBounds(
|
| std::vector<gfx::Rect>* character_bounds) override;
|
| void GetCompositionRange(gfx::Range* range) override;
|
| @@ -506,6 +507,7 @@ class CONTENT_EXPORT RenderViewImpl
|
| void InstrumentDidBeginFrame() override;
|
| void InstrumentDidCancelFrame() override;
|
| void InstrumentWillComposite() override;
|
| + void DidCompletePageScaleAnimation() override;
|
|
|
| protected:
|
| explicit RenderViewImpl(const ViewMsg_New_Params& params);
|
| @@ -1048,6 +1050,10 @@ class CONTENT_EXPORT RenderViewImpl
|
| typedef std::map<cc::SharedBitmapId, cc::SharedBitmap*> BitmapMap;
|
| BitmapMap disambiguation_bitmaps_;
|
|
|
| + // The bounds of the focused element in the viewport space. Updated when focus
|
| + // changes and when the viewport resizes.
|
| + blink::WebRect focused_element_bounds_;
|
| +
|
| // ---------------------------------------------------------------------------
|
| // ADDING NEW DATA? Please see if it fits appropriately in one of the above
|
| // sections rather than throwing it randomly at the end. If you're adding a
|
|
|