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

Unified Diff: base/android/java/src/org/chromium/base/library_loader/LibraryLoader.java

Issue 2015533005: Record the return value of NativeLibraryPreloader.loadLibrary in UMA (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add histogram.xml Created 4 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: base/android/java/src/org/chromium/base/library_loader/LibraryLoader.java
diff --git a/base/android/java/src/org/chromium/base/library_loader/LibraryLoader.java b/base/android/java/src/org/chromium/base/library_loader/LibraryLoader.java
index a9a3141a3deb009e8ffb2579bbaabff597e3d616..354d07fd1a3b3f9951d2ec50399d0470dcaf34d1 100644
--- a/base/android/java/src/org/chromium/base/library_loader/LibraryLoader.java
+++ b/base/android/java/src/org/chromium/base/library_loader/LibraryLoader.java
@@ -86,6 +86,10 @@ public class LibraryLoader {
// will be reported via UMA. Set once when the libraries are done loading.
private long mLibraryLoadTimeMs;
+ // The return value of NativeLibraryPreloader.loadLibrary(), which will be reported
+ // via UMA.
+ private int mLibraryPreloaderStatus;
Torne 2016/05/26 10:53:24 Initialise this to -1 or something? It will get de
michaelbai 2016/05/26 19:10:35 We don't need to do that, first, if so, this will
Torne 2016/05/27 10:21:13 It won't, it's an errno-style error code, they're
michaelbai 2016/05/27 15:52:42 I probably miss something here, I meant current im
+
/**
* Set native library preloader, if set, the NativeLibraryPreloader.loadLibrary will be invoked
* before calling System.loadLibrary, this only applies when not using the chromium linker.
@@ -282,7 +286,7 @@ public class LibraryLoader {
linker.finishLibraryLoad();
} else {
if (sLibraryPreloader != null) {
- sLibraryPreloader.loadLibrary(context);
+ mLibraryPreloaderStatus = sLibraryPreloader.loadLibrary(context);
}
// Load libraries using the system linker.
for (String library : NativeLibraries.LIBRARIES) {
@@ -383,6 +387,9 @@ public class LibraryLoader {
getLibraryLoadFromApkStatus(context),
mLibraryLoadTimeMs);
}
+ if (sLibraryPreloader != null) {
+ nativeRecordLibraryPreloaderBrowserHistogram(mLibraryPreloaderStatus);
+ }
}
// Returns the device's status for loading a library directly from the APK file.
@@ -409,6 +416,9 @@ public class LibraryLoader {
loadAtFixedAddressFailed,
mLibraryLoadTimeMs);
}
+ if (sLibraryPreloader != null) {
+ nativeRegisterLibraryPreloaderRendererHistogram(mLibraryPreloaderStatus);
+ }
}
/**
@@ -442,6 +452,10 @@ public class LibraryLoader {
int libraryLoadFromApkStatus,
long libraryLoadTime);
+ // Method called to record the return value of NativeLibraryPreloader.loadLibrary for the main
+ // browser process.
+ private native void nativeRecordLibraryPreloaderBrowserHistogram(int status);
+
// Method called to register (for later recording) statistics about the Chromium linker
// operation for a renderer process. Indicates whether the linker attempted relro sharing,
// and if it did, whether the library failed to load at a fixed address. Also records the
@@ -451,6 +465,10 @@ public class LibraryLoader {
boolean loadAtFixedAddressFailed,
long libraryLoadTime);
+ // Method called to register (for later recording) the return value of
+ // NativeLibraryPreloader.loadLibrary for a renderer process.
+ private native void nativeRegisterLibraryPreloaderRendererHistogram(int status);
+
// Get the version of the native library. This is needed so that we can check we
// have the right version before initializing the (rest of the) JNI.
private native String nativeGetVersionNumber();

Powered by Google App Engine
This is Rietveld 408576698