Closed
Bug 1186467
Opened 10 years ago
Closed 10 years ago
Convert NativeJSContainer to use new JNI scheme
Categories
(Firefox for Android Graveyard :: General, defect)
Tracking
(firefox42 fixed)
RESOLVED
FIXED
Firefox 42
Tracking | Status | |
---|---|---|
firefox42 | --- | fixed |
People
(Reporter: jchen, Assigned: jchen)
References
Details
Attachments
(4 files)
9.07 KB,
patch
|
snorp
:
review+
|
Details | Diff | Splinter Review |
5.90 KB,
patch
|
snorp
:
review+
|
Details | Diff | Splinter Review |
60.35 KB,
patch
|
jchen
:
review+
|
Details | Diff | Splinter Review |
64.67 KB,
patch
|
snorp
:
review+
|
Details | Diff | Splinter Review |
NativeJSContainer currently use mozglue stubs, but we should convert it to use the new JNI scheme that automatically forward native calls to corresponding instances.
Assignee | ||
Comment 1•10 years ago
|
||
This patch adds:
* Conversion operator from String::Param to String::LocalRef.
* More overloads of the jni::ThrowException function.
* name members to built-in types like jni::Object, jni::String, etc.
This allows using jni::Accessors::EnsureClassRef on built-in types
to get built-in class refs (e.g. jclass for java/lang/String).
* Ability to implicitly convert LocalRef<Cls> to LocalRef<Object>
* Fixes for bugs in LocalRef/GlobalRef where new refs are not created.
Attachment #8641157 -
Flags: review?(snorp)
Assignee | ||
Comment 2•10 years ago
|
||
JNIObject is the base class for any class that wish to use per-instance
native methods. It encapsulates the long native pointer that used to be
in NativeJSContainer.
Attachment #8641158 -
Flags: review?(snorp)
Assignee | ||
Comment 3•10 years ago
|
||
Attachment #8641159 -
Flags: review+
Assignee | ||
Comment 4•10 years ago
|
||
This patch makes NativeJSContainer use per-instance native methods.
NativeJSContainer is also updated to use smart JNI reference classes.
Attachment #8641160 -
Flags: review?(snorp)
Updated•10 years ago
|
Attachment #8641157 -
Flags: review?(snorp) → review+
Updated•10 years ago
|
Attachment #8641158 -
Flags: review?(snorp) → review+
Comment 5•10 years ago
|
||
Comment on attachment 8641160 [details] [diff] [review]
Rewrite NativeJSContainer to use new native JNI scheme (v1)
Review of attachment 8641160 [details] [diff] [review]:
-----------------------------------------------------------------
Lovely.
Attachment #8641160 -
Flags: review?(snorp) → review+
Comment 7•10 years ago
|
||
https://hg.mozilla.org/mozilla-central/rev/7cbc7f63aba7
https://hg.mozilla.org/mozilla-central/rev/c5e9a116e559
https://hg.mozilla.org/mozilla-central/rev/68f6ca13d044
https://hg.mozilla.org/mozilla-central/rev/a9b044bd018a
Status: ASSIGNED → RESOLVED
Closed: 10 years ago
Resolution: --- → FIXED
Target Milestone: --- → Firefox 42
Updated•4 years ago
|
Product: Firefox for Android → Firefox for Android Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•