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

Unified Diff: third_party/WebKit/Source/modules/speech/SpeechSynthesisEvent.h

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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: third_party/WebKit/Source/modules/speech/SpeechSynthesisEvent.h
diff --git a/third_party/WebKit/Source/modules/speech/SpeechSynthesisEvent.h b/third_party/WebKit/Source/modules/speech/SpeechSynthesisEvent.h
index 015a14c3e9ee3f5da4405b52e014cbfa62b75784..c8f7bdb15c87fab5498ea23fecdc71494ca2f578 100644
--- a/third_party/WebKit/Source/modules/speech/SpeechSynthesisEvent.h
+++ b/third_party/WebKit/Source/modules/speech/SpeechSynthesisEvent.h
@@ -34,8 +34,8 @@ namespace blink {
class SpeechSynthesisEvent final : public Event {
DEFINE_WRAPPERTYPEINFO();
public:
- static PassRefPtrWillBeRawPtr<SpeechSynthesisEvent> create();
- static PassRefPtrWillBeRawPtr<SpeechSynthesisEvent> create(const AtomicString& type, SpeechSynthesisUtterance*, unsigned charIndex, float elapsedTime, const String& name);
+ static RawPtr<SpeechSynthesisEvent> create();
+ static RawPtr<SpeechSynthesisEvent> create(const AtomicString& type, SpeechSynthesisUtterance*, unsigned charIndex, float elapsedTime, const String& name);
SpeechSynthesisUtterance* utterance() const { return m_utterance; }
unsigned charIndex() const { return m_charIndex; }
@@ -50,7 +50,7 @@ private:
SpeechSynthesisEvent();
SpeechSynthesisEvent(const AtomicString& type, SpeechSynthesisUtterance*, unsigned charIndex, float elapsedTime, const String& name);
- PersistentWillBeMember<SpeechSynthesisUtterance> m_utterance;
+ Member<SpeechSynthesisUtterance> m_utterance;
unsigned m_charIndex;
float m_elapsedTime;
String m_name;

Powered by Google App Engine
This is Rietveld 408576698