Index: content/browser/speech/google_one_shot_remote_engine.cc |
diff --git a/content/browser/speech/google_one_shot_remote_engine.cc b/content/browser/speech/google_one_shot_remote_engine.cc |
index 97743c9f94a187bf51cd9802f9b5119fafcaf8f3..dbb32e40574d17f9e1bdc3363fb42d258e6ced19 100644 |
--- a/content/browser/speech/google_one_shot_remote_engine.cc |
+++ b/content/browser/speech/google_one_shot_remote_engine.cc |
@@ -28,12 +28,12 @@ |
namespace content { |
namespace { |
-const char* const kDefaultSpeechRecognitionUrl = |
+const char kDefaultSpeechRecognitionUrl[] = |
"https://www.google.com/speech-api/v1/recognize?xjerr=1&client=chromium&"; |
-const char* const kStatusString = "status"; |
-const char* const kHypothesesString = "hypotheses"; |
-const char* const kUtteranceString = "utterance"; |
-const char* const kConfidenceString = "confidence"; |
+const char kStatusString[] = "status"; |
+const char kHypothesesString[] = "hypotheses"; |
+const char kUtteranceString[] = "utterance"; |
+const char kConfidenceString[] = "confidence"; |
const int kWebServiceStatusNoError = 0; |
const int kWebServiceStatusNoSpeech = 4; |
const int kWebServiceStatusNoMatch = 5; |