Commit 367ff21c authored by petrcermak's avatar petrcermak Committed by Commit bot

Add a Context argument to LibraryLoader.onNativeInitializationComplete().

BUG=423699, 390618

Review URL: https://codereview.chromium.org/643923004

Cr-Commit-Position: refs/heads/master@{#300289}
parent 44bf2fd5
...@@ -307,6 +307,12 @@ public class LibraryLoader { ...@@ -307,6 +307,12 @@ public class LibraryLoader {
} }
// Called after all native initializations are complete. // Called after all native initializations are complete.
public static void onNativeInitializationComplete(Context context) {
onNativeInitializationComplete();
}
// Called after all native initializations are complete.
@Deprecated
public static void onNativeInitializationComplete() { public static void onNativeInitializationComplete() {
recordBrowserProcessHistogram(); recordBrowserProcessHistogram();
nativeRecordNativeLibraryHack(sNativeLibraryHackWasUsed); nativeRecordNativeLibraryHack(sNativeLibraryHackWasUsed);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment