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

Unified Diff: Source/WebKit/chromium/public/WebInputElement.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
Index: Source/WebKit/chromium/public/WebInputElement.h
diff --git a/Source/WebKit/chromium/public/WebInputElement.h b/Source/WebKit/chromium/public/WebInputElement.h
index 69f28be98b061c5c17344802fdda9773cf7e97a5..e0fa1a3df3522ade1293669ff6ad8b40b3856aca 100644
--- a/Source/WebKit/chromium/public/WebInputElement.h
+++ b/Source/WebKit/chromium/public/WebInputElement.h
@@ -34,7 +34,10 @@
#include "WebFormControlElement.h"
#if WEBKIT_IMPLEMENTATION
-namespace WebCore { class HTMLInputElement; }
+namespace WebCore {
+class HTMLInputElement;
+template<typename T> class Handle;
+}
#endif
namespace WebKit {
@@ -114,9 +117,9 @@ namespace WebKit {
WEBKIT_EXPORT WebElement decorationElementFor(WebTextFieldDecoratorClient*);
#if WEBKIT_IMPLEMENTATION
- WebInputElement(const WTF::PassRefPtr<WebCore::HTMLInputElement>&);
- WebInputElement& operator=(const WTF::PassRefPtr<WebCore::HTMLInputElement>&);
- operator WTF::PassRefPtr<WebCore::HTMLInputElement>() const;
+ WebInputElement(WebCore::Handle<WebCore::HTMLInputElement>);
+ WebInputElement& operator=(WebCore::Handle<WebCore::HTMLInputElement>);
+ operator WebCore::Handle<WebCore::HTMLInputElement>() const;
#endif
};
« no previous file with comments | « Source/WebKit/chromium/public/WebFormControlElement.h ('k') | Source/WebKit/chromium/public/WebSelectElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698