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

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: Fixed indentation and naming convention issues. 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..e5c2cfa31e01a9b1fb8c9bd1eb3b245208129f74 100644
--- a/content/public/browser/web_contents.h
+++ b/content/public/browser/web_contents.h
@@ -391,6 +391,9 @@ class WebContents : public PageNavigator,
virtual void Delete() = 0;
virtual void SelectAll() = 0;
virtual void Unselect() = 0;
+ // Called to advance the focus to next form control element in
Avi (use Gerrit) 2015/04/17 16:46:27 Blank line before this one.
AKV 2015/04/17 16:50:03 Done.
+ // forward/backward direction from current element.
+ virtual void AdvanceFocusToNextFormControl(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