Index: chrome/common/render_messages.cc |
diff --git a/chrome/common/render_messages.cc b/chrome/common/render_messages.cc |
index 99ce94e5670f15509388f9436c40ff2abaa4d02a..e3e4518e143212baf3849169c36428a58002374e 100644 |
--- a/chrome/common/render_messages.cc |
+++ b/chrome/common/render_messages.cc |
@@ -9,7 +9,6 @@ |
#include "chrome/common/gpu_param_traits.h" |
#include "chrome/common/render_messages_params.h" |
#include "chrome/common/resource_response.h" |
-#include "chrome/common/speech_input_result.h" |
#include "chrome/common/thumbnail_score.h" |
#include "chrome/common/web_apps.h" |
#include "gfx/rect.h" |
@@ -1218,28 +1217,6 @@ void ParamTraits<AudioBuffersState>::Log(const param_type& p, std::string* l) { |
l->append(")"); |
} |
-void ParamTraits<speech_input::SpeechInputResultItem>::Write( |
- Message* m, const param_type& p) { |
- WriteParam(m, p.utterance); |
- WriteParam(m, p.confidence); |
-} |
- |
-bool ParamTraits<speech_input::SpeechInputResultItem>::Read(const Message* m, |
- void** iter, |
- param_type* p) { |
- return ReadParam(m, iter, &p->utterance) && |
- ReadParam(m, iter, &p->confidence); |
-} |
- |
-void ParamTraits<speech_input::SpeechInputResultItem>::Log(const param_type& p, |
- std::string* l) { |
- l->append("("); |
- LogParam(p.utterance, l); |
- l->append(":"); |
- LogParam(p.confidence, l); |
- l->append(")"); |
-} |
- |
void ParamTraits<PP_Flash_NetAddress>::Write(Message* m, const param_type& p) { |
WriteParam(m, p.size); |
m->WriteBytes(p.data, p.size); |