Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: libadblockplus-android/src/org/adblockplus/libadblockplus/Platform.java

Issue 29600561: Issue 6001 - Pass IV8IsolateProvider to Helper (Closed)
Patch Set: Created Nov. 7, 2017, 7:42 a.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: libadblockplus-android/src/org/adblockplus/libadblockplus/Platform.java
diff --git a/libadblockplus-android/src/org/adblockplus/libadblockplus/Platform.java b/libadblockplus-android/src/org/adblockplus/libadblockplus/Platform.java
index 61370bc3f22c76a0fed28b30638f70df1b7a6c68..abc272409f5cae68324aa8c2ea4427f6bb79f8c8 100644
--- a/libadblockplus-android/src/org/adblockplus/libadblockplus/Platform.java
+++ b/libadblockplus-android/src/org/adblockplus/libadblockplus/Platform.java
@@ -45,9 +45,9 @@ public class Platform implements Disposable
this.disposer = new Disposer(this, new DisposeWrapper(ptr));
}
- public void setUpJsEngine(final AppInfo appInfo, final long v8IsolatePtr)
+ public void setUpJsEngine(final AppInfo appInfo, final long v8IsolateProviderPtr)
{
- setUpJsEngine(this.ptr, appInfo, v8IsolatePtr);
+ setUpJsEngine(this.ptr, appInfo, v8IsolateProviderPtr);
}
public void setUpJsEngine(final AppInfo appInfo)
@@ -101,7 +101,7 @@ public class Platform implements Disposable
private final static native long ctor(LogSystem logSystem, WebRequest webRequest, String basePath);
- private final static native void setUpJsEngine(long ptr, AppInfo appInfo, long v8IsolatePtr);
+ private final static native void setUpJsEngine(long ptr, AppInfo appInfo, long v8IsolateProviderPtr);
private final static native long getJsEnginePtr(long ptr);

Powered by Google App Engine
This is Rietveld