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

Unified Diff: base/android/java/src/org/chromium/base/JNIUtils.java

Issue 1647803004: Move base to DEPS (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 4 years, 11 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: base/android/java/src/org/chromium/base/JNIUtils.java
diff --git a/base/android/java/src/org/chromium/base/JNIUtils.java b/base/android/java/src/org/chromium/base/JNIUtils.java
deleted file mode 100644
index 6f6cd54fb85ffb8f9a2e617b514f863d2161421c..0000000000000000000000000000000000000000
--- a/base/android/java/src/org/chromium/base/JNIUtils.java
+++ /dev/null
@@ -1,20 +0,0 @@
-// Copyright 2014 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-package org.chromium.base;
-
-/**
- * This class provides JNI-related methods to the native library.
- */
-public class JNIUtils {
- /**
- * This returns a ClassLoader that is capable of loading Chromium Java code. Such a ClassLoader
- * is needed for the few cases where the JNI mechanism is unable to automatically determine the
- * appropriate ClassLoader instance.
- */
- @CalledByNative
- public static Object getClassLoader() {
- return JNIUtils.class.getClassLoader();
- }
-}

Powered by Google App Engine
This is Rietveld 408576698