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

Unified Diff: Source/core/page/FocusController.h

Issue 1180843005: Change private API names and return type in FocusController (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: more conversion Created 5 years, 6 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 | « no previous file | Source/core/page/FocusController.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/page/FocusController.h
diff --git a/Source/core/page/FocusController.h b/Source/core/page/FocusController.h
index 98ad6518522b7966719c13326e76a7b5ebd44559..917ac9642a7da3481afa835378f63f0f14a8b95a 100644
--- a/Source/core/page/FocusController.h
+++ b/Source/core/page/FocusController.h
@@ -77,15 +77,15 @@ private:
bool advanceFocusDirectionally(WebFocusType);
bool advanceFocusInDocumentOrder(WebFocusType, bool initialFocus);
- Node* findFocusableNodeAcrossFocusScopes(WebFocusType, const FocusNavigationScope&, Node*);
- Node* findFocusableNodeAcrossFocusScopesForward(const FocusNavigationScope&, Node*);
- Node* findFocusableNodeAcrossFocusScopesBackward(const FocusNavigationScope&, Node*);
+ Element* findFocusableElementAcrossFocusScopes(WebFocusType, const FocusNavigationScope&, Node*);
+ Element* findFocusableElementAcrossFocusScopesForward(const FocusNavigationScope&, Node*);
+ Element* findFocusableElementAcrossFocusScopesBackward(const FocusNavigationScope&, Node*);
Element* findFocusableElementRecursively(WebFocusType, const FocusNavigationScope&, Node*);
Element* findFocusableElementRecursivelyForward(const FocusNavigationScope&, Node*);
Element* findFocusableElementRecursivelyBackward(const FocusNavigationScope&, Node*);
- Node* findFocusableNodeDecendingDownIntoFrameDocument(WebFocusType, Node*);
+ Element* findFocusableElementDescendingDownIntoFrameDocument(WebFocusType, Element*);
// Searches through the given tree scope, starting from start node, for the next/previous
// selectable element that comes after/before start node.
« no previous file with comments | « no previous file | Source/core/page/FocusController.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698