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

Side by Side Diff: content/browser/speech/speech_recognizer_impl_android.cc

Issue 1549113002: Switch to standard integer types in content/browser/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 12 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 unified diff | Download patch
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/browser/speech/speech_recognizer_impl_android.h" 5 #include "content/browser/speech/speech_recognizer_impl_android.h"
6 6
7 #include <stddef.h>
8
7 #include "base/android/context_utils.h" 9 #include "base/android/context_utils.h"
8 #include "base/android/jni_android.h" 10 #include "base/android/jni_android.h"
9 #include "base/android/jni_array.h" 11 #include "base/android/jni_array.h"
10 #include "base/android/jni_string.h" 12 #include "base/android/jni_string.h"
11 #include "base/android/scoped_java_ref.h" 13 #include "base/android/scoped_java_ref.h"
12 #include "base/bind.h" 14 #include "base/bind.h"
13 #include "base/strings/utf_string_conversions.h" 15 #include "base/strings/utf_string_conversions.h"
14 #include "content/public/browser/browser_thread.h" 16 #include "content/public/browser/browser_thread.h"
15 #include "content/public/browser/speech_recognition_event_listener.h" 17 #include "content/public/browser/speech_recognition_event_listener.h"
16 #include "content/public/browser/speech_recognition_manager.h" 18 #include "content/public/browser/speech_recognition_manager.h"
(...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after
217 state_ = STATE_IDLE; 219 state_ = STATE_IDLE;
218 listener()->OnRecognitionEnd(session_id()); 220 listener()->OnRecognitionEnd(session_id());
219 } 221 }
220 222
221 // static 223 // static
222 bool SpeechRecognizerImplAndroid::RegisterSpeechRecognizer(JNIEnv* env) { 224 bool SpeechRecognizerImplAndroid::RegisterSpeechRecognizer(JNIEnv* env) {
223 return RegisterNativesImpl(env); 225 return RegisterNativesImpl(env);
224 } 226 }
225 227
226 } // namespace content 228 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/speech/speech_recognizer_impl_android.h ('k') | content/browser/speech/speech_recognizer_impl_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698