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

Unified Diff: webrtc/examples/unityplugin/classreferenceholder.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
« no previous file with comments | « webrtc/examples/unityplugin/classreferenceholder.h ('k') | webrtc/examples/unityplugin/jni_onload.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/examples/unityplugin/classreferenceholder.cc
diff --git a/webrtc/examples/unityplugin/classreferenceholder.cc b/webrtc/examples/unityplugin/classreferenceholder.cc
index 88146997fe8cd1c459b62cf293fcce7367c2afdf..b009ce4734f44784ea5f8a9a257c69c8ac91c864 100644
--- a/webrtc/examples/unityplugin/classreferenceholder.cc
+++ b/webrtc/examples/unityplugin/classreferenceholder.cc
@@ -36,12 +36,12 @@ static ClassReferenceHolder* g_class_reference_holder = nullptr;
void LoadGlobalClassReferenceHolder() {
RTC_CHECK(g_class_reference_holder == nullptr);
- g_class_reference_holder = new ClassReferenceHolder(webrtc_jni::GetEnv());
+ g_class_reference_holder = new ClassReferenceHolder(webrtc::jni::GetEnv());
}
void FreeGlobalClassReferenceHolder() {
g_class_reference_holder->FreeReferences(
- webrtc_jni::AttachCurrentThreadIfNeeded());
+ webrtc::jni::AttachCurrentThreadIfNeeded());
delete g_class_reference_holder;
g_class_reference_holder = nullptr;
}
« no previous file with comments | « webrtc/examples/unityplugin/classreferenceholder.h ('k') | webrtc/examples/unityplugin/jni_onload.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698