Closed
Bug 596612
Opened 9 years ago
Closed 9 years ago
tabs open on synced computers should be indicated in awesomelist results
Categories
(Firefox for Android Graveyard :: General, defect)
Firefox for Android Graveyard
General
Not set
Tracking
(fennec2.0b2+)
VERIFIED
FIXED
Tracking | Status | |
---|---|---|
fennec | 2.0b2+ | --- |
People
(Reporter: madhava, Assigned: vingtetun)
Details
(Whiteboard: awesomepanel)
Attachments
(1 file, 1 obsolete file)
9.35 KB,
patch
|
mfinkle
:
review+
|
Details | Diff | Splinter Review |
This is shown in this mockup: http://www.flickr.com/photos/madhava_work/4828379991/in/set-72157624047244040/ When a user is searching in the awesomescreen, and an item in the list is a currently open tab on a remote browser, we should indicate that with an icon in the spot indicated. The android theme mockups are a more up-to-date depiction of placement and style of this icon.
Reporter | ||
Updated•9 years ago
|
blocking2.0: --- → ?
Updated•9 years ago
|
blocking2.0: ? → ---
tracking-fennec: --- → ?
OS: Mac OS X → All
Hardware: x86 → All
Version: 1.9.2 Branch → Trunk
Assignee | ||
Updated•9 years ago
|
Whiteboard: awesomepanel
Updated•9 years ago
|
tracking-fennec: ? → 2.0b2+
Assignee | ||
Comment 1•9 years ago
|
||
I''ve decided to use the badge helper to do this, mostly because I was looking for a way to not slow down the awesome screen. It could be not the best decision but I think it makes sense.
Attachment #477945 -
Flags: review?(mark.finkle)
Comment 2•9 years ago
|
||
Comment on attachment 477945 [details] [diff] [review] Patch I like doing this in a delayed manner, but I think we should split it out from the badge system. Can you just add a separate remote badge check and method in the binding itself? I don't think we want add-ons to mess around with this badge.
Assignee | ||
Updated•9 years ago
|
Attachment #477945 -
Flags: review?(mark.finkle)
Assignee | ||
Comment 3•9 years ago
|
||
Sure.
Attachment #477945 -
Attachment is obsolete: true
Attachment #477959 -
Flags: review?(mark.finkle)
Updated•9 years ago
|
Assignee: nobody → 21
Comment 4•9 years ago
|
||
Comment on attachment 477959 [details] [diff] [review] Patch Just move the remote badge code before the generic badge code. If I had to prioritize, I would say that the remote badges should become visible first. The generic badges might be time consuming.
Attachment #477959 -
Flags: review?(mark.finkle) → review+
Updated•9 years ago
|
Whiteboard: awesomepanel → awesomepanel [fennec-checkin-postb1]
Comment 5•9 years ago
|
||
Comment on attachment 477959 [details] [diff] [review] Patch >+#ifdef MOZ_SERVICES_SYNC >+ // once we have check badges, check if the tab is in the remote list >+ if (!Weave.Service.isLoggedIn) >+ return; >+ >+ for (let i = 0; i < remoteItems.length; i++) { >+ let remoteURI = remoteItems[i].uri; >+ if (remoteURI) { >+ let itemHost = Services.io.newURI(currentURL, null, null); >+ let remoteHost = Services.io.newURI(remoteURI, null, null); >+ if (itemHost.equals(remoteHost)) >+ item.setAttribute("remote", "true"); >+ } I am wondering how slow this will be. For people like me, the remoteItems array could be a few hundred items. Well need to keep an eye on this.
Comment 6•9 years ago
|
||
pushed: http://hg.mozilla.org/mobile-browser/rev/8c028cdaeee7
Status: NEW → RESOLVED
Closed: 9 years ago
Resolution: --- → FIXED
Whiteboard: awesomepanel [fennec-checkin-postb1] → awesomepanel
Updated•9 years ago
|
Flags: in-testsuite?
Flags: in-litmus?
Updated•9 years ago
|
Flags: in-litmus? → in-litmus?(tchung)
Comment 7•9 years ago
|
||
https://litmus.mozilla.org/show_test.cgi?id=15195
Flags: in-litmus?(tchung) → in-litmus+
Comment 8•9 years ago
|
||
Verified fix on Mozilla/5.0 (Android; Linux armv71; rv:2.0b13pre) Gecko/20110317 Firefox/4.0b13pre Fennec/4.0b6pre
Status: RESOLVED → VERIFIED
You need to log in
before you can comment on or make changes to this bug.
Description
•