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

Unified Diff: Source/core/html/shadow/TextControlInnerElements.h

Issue 255983003: Oilpan: Move all supplements of Page, Document, and WorkerClients to the managed heap. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: using namespace WebCore Created 6 years, 8 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/html/shadow/TextControlInnerElements.h
diff --git a/Source/core/html/shadow/TextControlInnerElements.h b/Source/core/html/shadow/TextControlInnerElements.h
index 48e689414268ce1f9d5657a4525a9534df431ada..534c4495b906f1bc07a026867cdc5ca68c12519a 100644
--- a/Source/core/html/shadow/TextControlInnerElements.h
+++ b/Source/core/html/shadow/TextControlInnerElements.h
@@ -101,6 +101,7 @@ private:
class InputFieldSpeechButtonElement FINAL
: public HTMLDivElement,
public SpeechInputListener {
+ WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(InputFieldSpeechButtonElement);
public:
enum SpeechInputState {
Idle,
@@ -124,6 +125,8 @@ public:
virtual void didCompleteRecognition(int) OVERRIDE;
virtual void setRecognitionResult(int, const SpeechInputResultArray&) OVERRIDE;
+ virtual void trace(Visitor*) OVERRIDE;
+
private:
InputFieldSpeechButtonElement(Document&);
SpeechInput* speechInput();
@@ -134,7 +137,7 @@ private:
bool m_capturing;
SpeechInputState m_state;
int m_listenerId;
- WillBePersistentSpeechInputResultArray m_results;
+ SpeechInputResultArray m_results;
};
DEFINE_TYPE_CASTS(InputFieldSpeechButtonElement, Element, element, element->isInputFieldSpeechButtonElement(), element.isInputFieldSpeechButtonElement());
« no previous file with comments | « Source/core/html/imports/HTMLImportsController.cpp ('k') | Source/core/html/shadow/TextControlInnerElements.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698