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

Unified Diff: Source/core/accessibility/AXObjectCache.cpp

Issue 19510005: [oilpan] Completely move HTMLFormControlElement's hierarchy to the managed heap Base URL: svn://svn.chromium.org/blink/branches/oilpan
Patch Set: Created 7 years, 5 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: Source/core/accessibility/AXObjectCache.cpp
diff --git a/Source/core/accessibility/AXObjectCache.cpp b/Source/core/accessibility/AXObjectCache.cpp
index dc0fb4b81c476f8c54212bdab117d272e3270eb2..8e3f956ad83748ece8af8aef5a245a52f8609687 100644
--- a/Source/core/accessibility/AXObjectCache.cpp
+++ b/Source/core/accessibility/AXObjectCache.cpp
@@ -896,7 +896,7 @@ void AXObjectCache::textMarkerDataForVisiblePosition(TextMarkerData& textMarkerD
return;
if (domNode->isHTMLElement()) {
- HTMLInputElement* inputElement = domNode->toInputElement();
+ Handle<HTMLInputElement> inputElement = domNode->toInputElement();
if (inputElement && inputElement->isPasswordField())
return;
}
« no previous file with comments | « Source/bindings/v8/custom/V8HTMLOptionsCollectionCustom.cpp ('k') | Source/core/accessibility/AccessibilityListBoxOption.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698