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

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

Issue 2877023002: Move webrtc/{base => rtc_base} (Closed)
Patch Set: update presubmit.py and DEPS include rules Created 3 years, 6 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/base/ipaddress_unittest.cc ('k') | webrtc/base/java/src/org/webrtc/Logging.java » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
deleted file mode 100644
index ec9af938ca8a56788fed14354723206b8eaec5ec..0000000000000000000000000000000000000000
--- a/webrtc/base/java/src/org/webrtc/ContextUtils.java
+++ /dev/null
@@ -1,47 +0,0 @@
-/*
- * 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;
-import org.webrtc.Logging;
-
-/**
- * Class for storing the application context and retrieving it in a static context. Similar to
- * org.chromium.base.ContextUtils.
- */
-public class ContextUtils {
- private static final String TAG = "ContextUtils";
- private static Context applicationContext;
-
- /**
- * Stores the application context that will be returned by getApplicationContext. This is called
- * by PeerConnectionFactory.initializeAndroidGlobals.
- */
- public static void initialize(Context applicationContext) {
- if (ContextUtils.applicationContext != null) {
- // TODO(sakal): Re-enable after the migration period.
- // throw new RuntimeException("Multiple ContextUtils.initialize calls.");
- Logging.e(
- TAG, "Calling ContextUtils.initialize multiple times, this will crash in the future!");
- }
- if (applicationContext == null) {
- throw new RuntimeException("Application context cannot be null for ContextUtils.initialize.");
- }
- ContextUtils.applicationContext = applicationContext;
- }
-
- /**
- * Returns the stored application context.
- */
- public static Context getApplicationContext() {
- return applicationContext;
- }
-}
« no previous file with comments | « webrtc/base/ipaddress_unittest.cc ('k') | webrtc/base/java/src/org/webrtc/Logging.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698