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

Unified Diff: Source/web/WebSpeechGrammar.cpp

Issue 623953002: Avoid some explicit WebSpeechRecognitionHandle() conversions. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Tidy vector element assignments of SpeechRecognitionResults Created 6 years, 2 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/web/WebSpeechGrammar.cpp
diff --git a/Source/web/WebSpeechGrammar.cpp b/Source/web/WebSpeechGrammar.cpp
index aea3e1632d333ca421232bc593b281251f1faa0e..a91f91300ea29f02b69f27ea53a3f258e561a35e 100644
--- a/Source/web/WebSpeechGrammar.cpp
+++ b/Source/web/WebSpeechGrammar.cpp
@@ -41,11 +41,6 @@ void WebSpeechGrammar::assign(const WebSpeechGrammar& other)
m_private = other.m_private;
}
-WebSpeechGrammar::WebSpeechGrammar(SpeechGrammar* value)
- : m_private(value)
-{
-}
-
WebSpeechGrammar& WebSpeechGrammar::operator=(SpeechGrammar* value)
{
m_private = value;

Powered by Google App Engine
This is Rietveld 408576698