Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1397)

Unified Diff: public/web/WebViewClient.h

Issue 26237004: Remove unused editing related member functions from WebViewClient (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 2013-10-09T17:59:14 Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « public/testing/WebTestProxy.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/web/WebViewClient.h
diff --git a/public/web/WebViewClient.h b/public/web/WebViewClient.h
index a5229171fe645078a70888058c56c9e505824401..ce0dedfb07b39cc9337586d9a7cd260378446e94 100644
--- a/public/web/WebViewClient.h
+++ b/public/web/WebViewClient.h
@@ -165,24 +165,10 @@ public:
// These methods allow the client to intercept and overrule editing
// operations.
- virtual bool shouldBeginEditing(const WebRange&) { return true; }
- virtual bool shouldEndEditing(const WebRange&) { return true; }
- virtual bool shouldInsertNode(
- const WebNode&, const WebRange&, WebEditingAction) { return true; }
- virtual bool shouldInsertText(
- const WebString&, const WebRange&, WebEditingAction) { return true; }
- virtual bool shouldChangeSelectedRange(
- const WebRange& from, const WebRange& to, WebTextAffinity,
- bool stillSelecting) { return true; }
- virtual bool shouldDeleteRange(const WebRange&) { return true; }
- virtual bool shouldApplyStyle(const WebString& style, const WebRange&) { return true; }
-
- virtual void didBeginEditing() { }
virtual void didCancelCompositionOnSelectionChange() { }
virtual void didChangeSelection(bool isSelectionEmpty) { }
virtual void didChangeContents() { }
virtual void didExecuteCommand(const WebString& commandName) { }
- virtual void didEndEditing() { }
virtual void didChangeFormState(const WebNode&) { }
// This method is called in response to WebView's handleInputEvent()
« no previous file with comments | « public/testing/WebTestProxy.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698