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

Unified Diff: webrtc/base/java/src/org/webrtc/ContextUtils.java

Issue 2888093004: Removes usage of native base::android::GetApplicationContext() (Closed)
Patch Set: Remove empty file. Created 3 years, 7 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/base/java/src/org/webrtc/ContextUtils.java
diff --git a/webrtc/base/java/src/org/webrtc/ContextUtils.java b/webrtc/base/java/src/org/webrtc/ContextUtils.java
new file mode 100644
index 0000000000000000000000000000000000000000..b8e2d3e6f2c0961fec7522abd44b275d8dfaa23a
--- /dev/null
+++ b/webrtc/base/java/src/org/webrtc/ContextUtils.java
@@ -0,0 +1,28 @@
+/*
+ * Copyright 2017 The WebRTC project authors. All Rights Reserved.
+ *
+ * Use of this source code is governed by a BSD-style license
+ * that can be found in the LICENSE file in the root of the source
+ * tree. An additional intellectual property rights grant can be found
+ * in the file PATENTS. All contributing project authors may
+ * be found in the AUTHORS file in the root of the source tree.
+ */
+
+package org.webrtc;
+
+import android.content.Context;
+
+/**
+ * Class for storing the application context and retrieving it in a static context.
+ */
+public class ContextUtils {
+ private static Context applicationContext;
+
+ public static void initialize(Context applicationContext) {
+ ContextUtils.applicationContext = applicationContext;
+ }
+
+ public static Context getApplicationContext() {
+ return applicationContext;
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698