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

Unified Diff: content/public/browser/web_contents.h

Issue 1080693002: Implementation of Smart GO NEXT feature in Android Chrome (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Updated based on blink side reviews. Created 5 years, 8 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
Index: content/public/browser/web_contents.h
diff --git a/content/public/browser/web_contents.h b/content/public/browser/web_contents.h
index 43804129322c4ed56ffc7b451c6ae1e5b84bfc2d..1a55864a3bd3d1f076e758b70a9139d34693560e 100644
--- a/content/public/browser/web_contents.h
+++ b/content/public/browser/web_contents.h
@@ -392,6 +392,10 @@ class WebContents : public PageNavigator,
virtual void SelectAll() = 0;
virtual void Unselect() = 0;
+ // Called to advance the focus to next form control element in
+ // forward/backward direction from current element.
+ virtual void AdvanceFocusInForm(bool forward) = 0;
+
// Replaces the currently selected word or a word around the cursor.
virtual void Replace(const base::string16& word) = 0;

Powered by Google App Engine
This is Rietveld 408576698