Chromium Code Reviews| Index: chrome/browser/renderer_host/render_widget_host_view.h |
| =================================================================== |
| --- chrome/browser/renderer_host/render_widget_host_view.h (revision 13391) |
| +++ chrome/browser/renderer_host/render_widget_host_view.h (working copy) |
| @@ -113,11 +113,8 @@ |
| virtual void SetTooltipText(const std::wstring& tooltip_text) = 0; |
| // Notifies the View that the renderer text selection has changed. |
| - virtual void SelectionChanged() { }; |
| + virtual void SelectionChanged(const std::string& text) { }; |
|
darin (slow to review)
2009/04/09 05:00:28
nit: no need for trailing ';'
|
| - // Notifies the View what the current selection text is. |
| - virtual void SetSelectionText(const std::string& text) { }; |
| - |
| // Tells the View to get the text from the selection clipboard and send it |
| // back to the renderer asynchronously. |
| virtual void PasteFromSelectionClipboard() { } |