Closed
Bug 786831
Opened 13 years ago
Closed 13 years ago
B2G RIL: Simplify nsIDOMMozIccManager::sendStkResponse
Categories
(Core :: DOM: Device Interfaces, defect)
Tracking
()
RESOLVED
FIXED
mozilla18
People
(Reporter: philikon, Assigned: allstars.chh)
References
Details
Attachments
(3 files, 2 obsolete files)
14.73 KB,
patch
|
philikon
:
review+
|
Details | Diff | Splinter Review |
3.11 KB,
patch
|
Details | Diff | Splinter Review | |
1023 bytes,
patch
|
Details | Diff | Splinter Review |
Instead of
icc.sendStkResponse({
commandNumber: command.commandNumber,
typeOfCommand: command.typeOfCommand,
commandQualifier: command.commandQualifier,
resultCode: icc.STK_RESULT_OK,
...
});
I think it would be simpler if we did
icc.sendStkResponse(command, {
resultCode: icc.STK_RESULT_OK,
...
});
since the command stuff is always required.
Assignee | ||
Updated•13 years ago
|
Assignee: nobody → allstars.chh
Status: NEW → ASSIGNED
Assignee | ||
Comment 1•13 years ago
|
||
Attachment #656707 -
Flags: review?(philipp)
Assignee | ||
Comment 2•13 years ago
|
||
Hi, smaug
There's a small update about IccManager,
Could you review this patch for me ?
Thanks
Attachment #656708 -
Flags: review?(bugs)
Assignee | ||
Comment 3•13 years ago
|
||
Hi, philikon:
one more patch,
this is about update RIL implementaions
Thanks
Attachment #656710 -
Flags: review?(philipp)
Updated•13 years ago
|
Attachment #656708 -
Flags: review?(bugs) → review+
![]() |
Reporter | |
Comment 4•13 years ago
|
||
Comment on attachment 656707 [details] [diff] [review]
Part 1: Update IDL
Review of attachment 656707 [details] [diff] [review]:
-----------------------------------------------------------------
I'm going to go out on a limb here and claim that we won't need superreview for this.
Attachment #656707 -
Flags: review?(philipp) → review+
![]() |
Reporter | |
Comment 5•13 years ago
|
||
Comment on attachment 656710 [details] [diff] [review]
Part 3: Update RIL
Review of attachment 656710 [details] [diff] [review]:
-----------------------------------------------------------------
<3
Attachment #656710 -
Flags: review?(philipp) → review+
Assignee | ||
Comment 6•13 years ago
|
||
Update patch comments.
Attachment #656707 -
Attachment is obsolete: true
Assignee | ||
Comment 8•13 years ago
|
||
https://hg.mozilla.org/integration/mozilla-inbound/rev/98b94d18373e
https://hg.mozilla.org/integration/mozilla-inbound/rev/7ea41d5679c4
https://hg.mozilla.org/integration/mozilla-inbound/rev/604c5f59c5e0
Guys,
Thanks for your quick review.
Target Milestone: --- → mozilla18
Comment 9•13 years ago
|
||
https://hg.mozilla.org/mozilla-central/rev/98b94d18373e
https://hg.mozilla.org/mozilla-central/rev/7ea41d5679c4
https://hg.mozilla.org/mozilla-central/rev/604c5f59c5e0
Status: ASSIGNED → RESOLVED
Closed: 13 years ago
Resolution: --- → FIXED
You need to log in
before you can comment on or make changes to this bug.
Description
•