| Index: third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
 | 
| diff --git a/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp b/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
 | 
| index 306cafeb0070d0079fe460c794ddffa23187b071..e17ec589a9b79cbd71cf64a34989583528b8ec38 100644
 | 
| --- a/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
 | 
| +++ b/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
 | 
| @@ -943,19 +943,6 @@ void WebLocalFrameImpl::replaceSelection(const WebString& text)
 | 
|      frame()->editor().replaceSelectionWithText(text, selectReplacement, smartReplace);
 | 
|  }
 | 
|  
 | 
| -void WebLocalFrameImpl::insertText(const WebString& text)
 | 
| -{
 | 
| -    if (frame()->inputMethodController().hasComposition()) {
 | 
| -        // TODO(xiaochengh): The use of updateStyleAndLayoutIgnorePendingStylesheets
 | 
| -        // needs to be audited.  See http://crbug.com/590369 for more details.
 | 
| -        frame()->document()->updateStyleAndLayoutIgnorePendingStylesheets();
 | 
| -
 | 
| -        frame()->inputMethodController().confirmComposition(text);
 | 
| -    } else {
 | 
| -        frame()->editor().insertText(text, 0);
 | 
| -    }
 | 
| -}
 | 
| -
 | 
|  void WebLocalFrameImpl::setMarkedText(const WebString& text, unsigned location, unsigned length)
 | 
|  {
 | 
|      Vector<CompositionUnderline> decorations;
 | 
| 
 |