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

Unified Diff: webrtc/examples/unityplugin/jni_onload.cc

Issue 3009613002: Android: Replace webrtc_jni namespace with nested jni namespace (Closed)
Patch Set: Rebase Created 3 years, 4 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/examples/unityplugin/jni_onload.cc
diff --git a/webrtc/examples/unityplugin/jni_onload.cc b/webrtc/examples/unityplugin/jni_onload.cc
index b8b4adf367d60edfedaed748871fbf7a4e02104f..558dcfbf92e48f9e0230d635a2c9d258586f63f9 100644
--- a/webrtc/examples/unityplugin/jni_onload.cc
+++ b/webrtc/examples/unityplugin/jni_onload.cc
@@ -17,7 +17,8 @@
#include "webrtc/sdk/android/src/jni/classreferenceholder.h"
#include "webrtc/sdk/android/src/jni/jni_helpers.h"
-namespace webrtc_jni {
+namespace webrtc {
+namespace jni {
extern "C" jint JNIEXPORT JNICALL JNI_OnLoad(JavaVM* jvm, void* reserved) {
jint ret = InitGlobalJniVariables(jvm);
@@ -38,4 +39,5 @@ extern "C" void JNIEXPORT JNICALL JNI_OnUnLoad(JavaVM* jvm, void* reserved) {
RTC_CHECK(rtc::CleanupSSL()) << "Failed to CleanupSSL()";
}
-} // namespace webrtc_jni
+} // namespace jni
+} // namespace webrtc
« no previous file with comments | « webrtc/examples/unityplugin/classreferenceholder.cc ('k') | webrtc/examples/unityplugin/simple_peer_connection.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698