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

Unified Diff: webrtc/modules/audio_device/android/java/src/org/webrtc/voiceengine/BuildInfo.java

Issue 2119633004: Adds support for OpenSL ES based audio capture on Android (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Rebased Created 4 years, 3 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: webrtc/modules/audio_device/android/java/src/org/webrtc/voiceengine/BuildInfo.java
diff --git a/webrtc/modules/audio_device/android/java/src/org/webrtc/voiceengine/BuildInfo.java b/webrtc/modules/audio_device/android/java/src/org/webrtc/voiceengine/BuildInfo.java
index 95ff585947d7cb1b11af4dd02839d6973cf38a40..aaf07f1c04244d2eb695cf2dbcff07a5bf0b1dd9 100644
--- a/webrtc/modules/audio_device/android/java/src/org/webrtc/voiceengine/BuildInfo.java
+++ b/webrtc/modules/audio_device/android/java/src/org/webrtc/voiceengine/BuildInfo.java
@@ -45,7 +45,7 @@ public final class BuildInfo {
return Build.VERSION.RELEASE;
}
- public static String getSdkVersion() {
- return Integer.toString(Build.VERSION.SDK_INT);
+ public static int getSdkVersion() {
+ return Build.VERSION.SDK_INT;
tommi 2016/09/15 09:34:12 fix indent
henrika_webrtc 2016/09/16 13:30:47 Done.
}
}

Powered by Google App Engine
This is Rietveld 408576698