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

Unified Diff: Source/WebKit/chromium/public/WebFormControlElement.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 | « no previous file | Source/WebKit/chromium/public/WebInputElement.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/WebKit/chromium/public/WebFormControlElement.h
diff --git a/Source/WebKit/chromium/public/WebFormControlElement.h b/Source/WebKit/chromium/public/WebFormControlElement.h
index fac295ef782dbb1e1009d0d36215277d2f720ccd..3590276a126f07da769824fbd24fd8f234449507 100644
--- a/Source/WebKit/chromium/public/WebFormControlElement.h
+++ b/Source/WebKit/chromium/public/WebFormControlElement.h
@@ -36,7 +36,10 @@
#include "WebFormElement.h"
#if WEBKIT_IMPLEMENTATION
-namespace WebCore { class HTMLFormControlElement; }
+namespace WebCore {
+class HTMLFormControlElement;
+template<typename T> class Handle;
+}
#endif
namespace WebKit {
@@ -69,9 +72,9 @@ public:
WEBKIT_EXPORT WebFormElement form() const;
#if WEBKIT_IMPLEMENTATION
- WebFormControlElement(const WTF::PassRefPtr<WebCore::HTMLFormControlElement>&);
- WebFormControlElement& operator=(const WTF::PassRefPtr<WebCore::HTMLFormControlElement>&);
- operator WTF::PassRefPtr<WebCore::HTMLFormControlElement>() const;
+ WebFormControlElement(WebCore::Handle<WebCore::HTMLFormControlElement>);
+ WebFormControlElement& operator=(WebCore::Handle<WebCore::HTMLFormControlElement>);
+ operator WebCore::Handle<WebCore::HTMLFormControlElement>() const;
#endif
};
« no previous file with comments | « no previous file | Source/WebKit/chromium/public/WebInputElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698