Closed
Bug 1292605
Opened 9 years ago
Closed 9 years ago
ext-bookmarks doesn't import PlacesUtils
Categories
(WebExtensions :: Untriaged, defect, P1)
Tracking
(firefox50 fixed, firefox51+ fixed)
People
(Reporter: aswan, Assigned: aswan)
Details
(Keywords: regression, Whiteboard: [bookmarks]triaged)
Attachments
(1 file)
|
58 bytes,
text/x-review-board-request
|
kmag
:
review+
ritu
:
approval-mozilla-aurora+
|
Details |
+++ This bug was initially created as a clone of Bug #1292093 +++
User Agent: Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.82 Safari/537.36
Steps to reproduce:
I'm porting my Chrome extension in Firefox. There is peace of code which don't works:
function loadHistory(callback) {
chrome.history.search({
text: "http",
startTime: 1,
maxResults: 10000000
}, callback);
}
FF version: 51.0a1 (2016-08-03)
Actual results:
I got the exception in console:
PlacesUtils is not defined ext-history.js:188
.history.search
chrome://browser/content/ext-history.js:188:1
callAsyncFunction
resource://gre/modules/Extension.jsm:557:61
bound callAsyncFunction
self-hostedinject/stubresource://gre/modules/Schemas.jsm:1181:16
loadHistory
.................................
The problem is in PlacesUtils. It is not defined.
Expected results:
I should get correct results in callback.
| Assignee | ||
Comment 1•9 years ago
|
||
[Tracking Requested - why for this release]:
This is exactly the same issue as bug 1292093 but in the bookmarks api instead of history
https://bugzilla.mozilla.org/show_bug.cgi?id=1292093#c7
status-firefox50:
--- → affected
tracking-firefox51:
--- → ?
Whiteboard: [history]triaged → [bookmarks]triaged
| Assignee | ||
Comment 2•9 years ago
|
||
Review commit: https://reviewboard.mozilla.org/r/69650/diff/#index_header
See other reviews: https://reviewboard.mozilla.org/r/69650/
Attachment #8778340 -
Flags: review?(kmaglione+bmo)
Comment 3•9 years ago
|
||
Comment on attachment 8778340 [details]
Bug 1292605 Import PlacesUtils.jsm in ext-bookmarks
https://reviewboard.mozilla.org/r/69650/#review66780
Attachment #8778340 -
Flags: review?(kmaglione+bmo) → review+
Pushed by maglione.k@gmail.com:
https://hg.mozilla.org/integration/autoland/rev/c008ecf88273
Import PlacesUtils.jsm in ext-bookmarks r=kmag
| Assignee | ||
Comment 5•9 years ago
|
||
Comment on attachment 8778340 [details]
Bug 1292605 Import PlacesUtils.jsm in ext-bookmarks
Approval Request Comment
[Feature/regressing bug #]: bug 1285063
[User impact if declined]: webextensions bookmarks api has the same flaw as described in bug 1292093
[Describe test coverage new/current, TreeHerder]: all existing tests pass with this change, the bug was so specific that a new targeted unit test for it would not be valuable for catching future regressions
[Risks and why]: low risk, just the webextensions bookmarks api implementation is affected
[String/UUID change made/needed]: none
Attachment #8778340 -
Flags: approval-mozilla-aurora?
Comment 7•9 years ago
|
||
| bugherder | ||
Status: NEW → RESOLVED
Closed: 9 years ago
Resolution: --- → FIXED
Target Milestone: --- → mozilla51
Keywords: regression
Comment on attachment 8778340 [details]
Bug 1292605 Import PlacesUtils.jsm in ext-bookmarks
Fixes a regression, Aurora50+
Attachment #8778340 -
Flags: approval-mozilla-aurora? → approval-mozilla-aurora+
Comment 9•9 years ago
|
||
| bugherder uplift | ||
Updated•9 years ago
|
Severity: blocker → normal
Updated•7 years ago
|
Product: Toolkit → WebExtensions
You need to log in
before you can comment on or make changes to this bug.
Description
•