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

Unified Diff: Source/WebKit/chromium/public/WebSelectElement.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/WebKit/chromium/public/WebInputElement.h ('k') | Source/WebKit/chromium/src/ChromeClientImpl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/WebKit/chromium/public/WebSelectElement.h
diff --git a/Source/WebKit/chromium/public/WebSelectElement.h b/Source/WebKit/chromium/public/WebSelectElement.h
index 63cd8f1f8e6c3ae7f43ef495f36e21426c3203ed..d4e631cbdacddf7f2999d0cf5bc4acf7313ada72 100644
--- a/Source/WebKit/chromium/public/WebSelectElement.h
+++ b/Source/WebKit/chromium/public/WebSelectElement.h
@@ -36,7 +36,10 @@
#include "WebOptionElement.h"
#if WEBKIT_IMPLEMENTATION
-namespace WebCore { class HTMLSelectElement; }
+namespace WebCore {
+class HTMLSelectElement;
+template<typename T> class Handle;
+}
#endif
namespace WebKit {
@@ -59,9 +62,9 @@ public:
WEBKIT_EXPORT WebVector<WebElement> listItems() const;
#if WEBKIT_IMPLEMENTATION
- WebSelectElement(const WTF::PassRefPtr<WebCore::HTMLSelectElement>&);
- WebSelectElement& operator=(const WTF::PassRefPtr<WebCore::HTMLSelectElement>&);
- operator WTF::PassRefPtr<WebCore::HTMLSelectElement>() const;
+ WebSelectElement(WebCore::Handle<WebCore::HTMLSelectElement>);
+ WebSelectElement& operator=(WebCore::Handle<WebCore::HTMLSelectElement>);
+ operator WebCore::Handle<WebCore::HTMLSelectElement>() const;
#endif
};
« no previous file with comments | « Source/WebKit/chromium/public/WebInputElement.h ('k') | Source/WebKit/chromium/src/ChromeClientImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698