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

Unified Diff: Source/core/html/HTMLKeygenElement.h

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
« no previous file with comments | « Source/core/html/HTMLInputElement.idl ('k') | Source/core/html/HTMLKeygenElement.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/HTMLKeygenElement.h
diff --git a/Source/core/html/HTMLKeygenElement.h b/Source/core/html/HTMLKeygenElement.h
index 777afeeb845f3e60d625cd4199799d237e00fadf..436b0b0fc5920d831383e83021112fb693510ed3 100644
--- a/Source/core/html/HTMLKeygenElement.h
+++ b/Source/core/html/HTMLKeygenElement.h
@@ -32,10 +32,12 @@ class HTMLSelectElement;
class HTMLKeygenElement : public HTMLFormControlElementWithState {
public:
- static PassRefPtr<HTMLKeygenElement> create(const QualifiedName&, Document*, HTMLFormElement*);
+ static Result<HTMLKeygenElement> create(const QualifiedName&, Document*, HTMLFormElement*);
virtual bool willValidate() const { return false; }
+ virtual void acceptHeapVisitor(Visitor*) const OVERRIDE;
+
private:
HTMLKeygenElement(const QualifiedName&, Document*, HTMLFormElement*);
@@ -55,7 +57,7 @@ private:
virtual void reset();
virtual bool shouldSaveAndRestoreFormControlState() const OVERRIDE;
- HTMLSelectElement* shadowSelect() const;
+ Result<HTMLSelectElement> shadowSelect() const;
};
} //namespace
« no previous file with comments | « Source/core/html/HTMLInputElement.idl ('k') | Source/core/html/HTMLKeygenElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698