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

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

Issue 2217763003: Remove Blink-WebKit-only document.createEvent strings (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 4 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/SpeechRecognitionEvent.h
diff --git a/third_party/WebKit/Source/modules/speech/SpeechRecognitionEvent.h b/third_party/WebKit/Source/modules/speech/SpeechRecognitionEvent.h
index 3d1d21762586a43ee6f221a6860cc9b66a264808..5b50cc03ed37cfcee9cb6a4a8d009182f17b16fa 100644
--- a/third_party/WebKit/Source/modules/speech/SpeechRecognitionEvent.h
+++ b/third_party/WebKit/Source/modules/speech/SpeechRecognitionEvent.h
@@ -39,7 +39,6 @@ class Document;
class SpeechRecognitionEvent final : public Event {
DEFINE_WRAPPERTYPEINFO();
public:
- static SpeechRecognitionEvent* create();
static SpeechRecognitionEvent* create(const AtomicString&, const SpeechRecognitionEventInit&);
~SpeechRecognitionEvent() override;
@@ -59,7 +58,6 @@ public:
DECLARE_VIRTUAL_TRACE();
private:
- SpeechRecognitionEvent();
SpeechRecognitionEvent(const AtomicString&, const SpeechRecognitionEventInit&);
SpeechRecognitionEvent(const AtomicString& eventName, unsigned long resultIndex, SpeechRecognitionResultList* results);

Powered by Google App Engine
This is Rietveld 408576698