Closed Bug 828254 Opened 11 years ago Closed 11 years ago

Provide ability to search for highlighted text

Categories

(Firefox for Android Graveyard :: Text Selection, enhancement)

ARM
Android
enhancement
Not set
normal

Tracking

(Not tracked)

RESOLVED FIXED
Firefox 25

People

(Reporter: tech4pwd, Assigned: ckitching)

References

Details

(Whiteboard: parity-desktop, parity-chrome)

Attachments

(2 files, 8 obsolete files)

76.61 KB, image/png
Details
7.16 KB, patch
Margaret
: review+
Details | Diff | Splinter Review
User Agent: Mozilla/5.0 (Windows NT 6.1; rv:21.0) Gecko/20130108 Firefox/21.0
Build ID: 20130108033457

Steps to reproduce:

You can share but not search for text. This is one of desktops' most basic features. Mobile should have parity.
Depends on: 824475
OS: Windows 7 → Android
Hardware: x86 → ARM
Whiteboard: parity-desktop
Depends on: 768667
Whiteboard: parity-desktop → parity-desktop, parity-chrome
Clarification: Chrome on Android uses the ActionBar, and the current selection is searched (to Google) via a magnifying glass icon. I think this would be pretty trivial to add (even a mentor bug) to a context-menu for us in browser.js in initContextMenu() and adding a context. Would one want a new tab or re-use the existing?
Severity: normal → enhancement
Status: UNCONFIRMED → NEW
Ever confirmed: true
A new tab would follow the UX that we've established on desktop.
Ian, what's your opinion on this? I feel like we're often wary of adding more context menus, so maybe we should just do this as part of the action bar if/when we fix bug 768667.
Flags: needinfo?(ibarlow)
(In reply to :Margaret Leibovic from comment #3)
> Ian, what's your opinion on this? I feel like we're often wary of adding
> more context menus, so maybe we should just do this as part of the action
> bar if/when we fix bug 768667.

That would have been my suggestion, too. We don't even have any context menu / action bar appear yet when you select text, so we would need to address that first. Preferably with an action bar.
Flags: needinfo?(ibarlow)
(In reply to Ian Barlow (:ibarlow) from comment #4)
> (In reply to :Margaret Leibovic from comment #3)
> > Ian, what's your opinion on this? I feel like we're often wary of adding
> > more context menus, so maybe we should just do this as part of the action
> > bar if/when we fix bug 768667.
> 
> That would have been my suggestion, too. We don't even have any context menu
> / action bar appear yet when you select text, so we would need to address
> that first. Preferably with an action bar.

Actually, we do have a specific menu for selected text:
1. Select some text
2. Long press on the selection
3. Enjoy the selected text menu

There is room on the menu for "Search using Xxx"
Heh, well there you go -- learn something new every day ;)
I think in inputs there may be even more items than that, which is why I worry about adding another context menu item. But we can test to see how it looks

If we do want to go ahead with the context menu item, this would be a good intern starter bug.
Assignee: nobody → ckitching
There are already a lot of context menu items for selected text in an input. Perhaps we should do something to have the selected text context menu replace the input context menu, instead of merging the items like this.
I might not be typical, but I seem to use the desktop "Search for " context menu when selecting web content, not text in inputs. I see the desktop supports both (which I didn't even realize), but maybe we could only focus on content as a first step.

Aslo, I see that for inputs Chrome, which uses the action bar - a different bug, only supports "Select All", "Cut" and "Copy". We could reduce our long input context menu by removing "Copy All" and "Select Word". Just food for thought.
Here`s a patch to fix this particular bug. The discussion seems to have brought up a couple of additional things that need changing in this area - how exactly should we proceed? Mark`s suggestion for how to shorten the long context menu seems sensible. Should the patch be modified such that this new feature does not exist for input fields? (Currently it works both on input fields and ordinary content)
Attachment #768133 - Flags: review?(margaret.leibovic)
Applying style corrections that got another of my patches rejected...
Attachment #768133 - Attachment is obsolete: true
Attachment #768133 - Flags: review?(margaret.leibovic)
Attachment #768418 - Flags: review?(margaret.leibovic)
Comment on attachment 768418 [details] [diff] [review]
Patch adding context menu item to search using the selected text as the search terms. Code style tweaks.

There seems to be something wrong with the formatting of this patch... splinter review isn't showing all the hunks, and it's failing to apply for me locally. Maybe something went wrong while updating the patch?
I'm curious what ibarlow thinks the string for this menu item should be. I think we can come up with something better than "Search with Selection".

On desktop the context menu item is:

Search Google for "the selected text..."

I feel like we don't have a lot of room for showing a long context menu item, but I do think we should put the search provider in there. Maybe "Search using Google" like mfinkle suggested in comment 5 would be good. I also like his idea to just restrict this to static text content.

For adding the engine name to the context menu item, you'll want to use string bundle's getFormattedString method. The desktop code is a handy example:
http://mxr.mozilla.org/mozilla-central/source/browser/base/content/nsContextMenu.js#1361
Flags: needinfo?(ibarlow)
I'd suggest "Search selected text", "Search for..." or simply "Search". If we're planning to provide more than one search option as per https://addons.mozilla.org/en-US/android/addon/long-tap-search/ I'd suggest agree with comment 5 "Search using XXX"
(In reply to :Margaret Leibovic from comment #13)
> I'm curious what ibarlow thinks the string for this menu item should be. I
> think we can come up with something better than "Search with Selection".
> 
> On desktop the context menu item is:
> 
> Search Google for "the selected text..."
> 
> I feel like we don't have a lot of room for showing a long context menu
> item, but I do think we should put the search provider in there. Maybe
> "Search using Google" like mfinkle suggested in comment 5 would be good. I
> also like his idea to just restrict this to static text content.
> 
> For adding the engine name to the context menu item, you'll want to use
> string bundle's getFormattedString method. The desktop code is a handy
> example:
> http://mxr.mozilla.org/mozilla-central/source/browser/base/content/
> nsContextMenu.js#1361

Maybe "Searchprovider search"?

So the menu item could read "Google search" or "Duckduckgo search", or whatever their default provider has been set to
Flags: needinfo?(ibarlow)
Comment on attachment 768418 [details] [diff] [review]
Patch adding context menu item to search using the selected text as the search terms. Code style tweaks.

Setting this to r-, since we need to fix the formatting issue here, and we should update the menu item string to follow ibarlow's suggestion.
Attachment #768418 - Flags: review?(margaret.leibovic) → review-
Added Ian´s suggestion and hopefully managed not to fail in exporting the patch this time...
Attachment #768418 - Attachment is obsolete: true
Attachment #769262 - Flags: review?(margaret.leibovic)
Status: NEW → ASSIGNED
Attachment #769262 - Attachment description: Now displays provider name in menu item. → Bug 769262 - Adding context menu item to search with selection. r=margaret.leibovic
Comment on attachment 769262 [details] [diff] [review]
Bug 769262 - Adding context menu item to search with selection. r=margaret.leibovic

Review of attachment 769262 [details] [diff] [review]:
-----------------------------------------------------------------

::: mobile/android/chrome/content/browser.js
@@ +5840,5 @@
>      NativeWindow.contextmenus.add(Strings.browser.GetStringFromName("contextmenu.selectAll"), ClipboardHelper.selectAllContext, ClipboardHelper.selectAll.bind(ClipboardHelper));
>      NativeWindow.contextmenus.add(Strings.browser.GetStringFromName("contextmenu.share"), ClipboardHelper.shareContext, ClipboardHelper.share.bind(ClipboardHelper));
>      NativeWindow.contextmenus.add(Strings.browser.GetStringFromName("contextmenu.paste"), ClipboardHelper.pasteContext, ClipboardHelper.paste.bind(ClipboardHelper));
>      NativeWindow.contextmenus.add(Strings.browser.GetStringFromName("contextmenu.changeInputMethod"), NativeWindow.contextmenus.textContext, ClipboardHelper.inputMethod.bind(ClipboardHelper));
> +    NativeWindow.contextmenus.add(Strings.browser.formatStringFromName("contextmenu.search", [Services.search.defaultEngine.name], 1), ClipboardHelper.searchWithContext, ClipboardHelper.searchWith.bind(ClipboardHelper));

If the user changes the default search engine, this string doesn't update itself. To fix this, you should observe the "browser-search-engine-modified" notification, and update the context menu when appropriate. It looks like we can even just watch for the specific case when the default engine changes, since the string "engine-default" will be included in the data of the notification:
http://mxr.mozilla.org/mozilla-central/source/toolkit/components/search/nsSearchService.js#3554

I don't see an API to update a contextmenu item label, so you may just have to remove/re-add with the new string.

It looks like contextmenus.add returns an id:
http://mxr.mozilla.org/mozilla-central/source/mobile/android/chrome/content/browser.js#1704

Which you can keep track of and call contextmenus.remove, followed by contextmenus.add again.

You'll probably want to factor this logic out into a helper method.

@@ +5879,5 @@
>    },
>  
> +  searchWith: function(aElement) {
> +    let string = SelectionHandler._getSelectedText();
> +    if(string) {

Nit: Space between if and paren.

@@ +5882,5 @@
> +    let string = SelectionHandler._getSelectedText();
> +    if(string) {
> +      let req = Services.search.defaultEngine.getSubmission(string);
> +      BrowserApp.selectOrOpenTab(req.uri.spec);
> +    }

I'd prefer to move this all into a helper method on SelectionHandler, something like SelectionHandler.searchSelection(). This would be more consistent with the other methods used around here, and it would also let us avoid calling _getSelectedText, which is currently only used within SelectionHandler (prepending an underscore to method names is a JS convention for considering the method private).
Attachment #769262 - Flags: review?(margaret.leibovic) → review-
Here is a revised patch - I hadn't realised the thing about underscores in JS - that's handy to know - thanks!
Attachment #769262 - Attachment is obsolete: true
Attachment #771732 - Flags: review?(margaret.leibovic)
Comment on attachment 771732 [details] [diff] [review]
V3 - Adding default change event tracking.

Review of attachment 771732 [details] [diff] [review]:
-----------------------------------------------------------------

This is looking good, but I have enough comments that I'd like to see a new version of the patch. And please remember to use 2-space indentation in JS files.

::: mobile/android/chrome/content/SelectionHandler.js
@@ +274,5 @@
> +      let string = SelectionHandler._getSelectedText();
> +      if (string) {
> +          let req = Services.search.defaultEngine.getSubmission(string);
> +          BrowserApp.selectOrOpenTab(req.uri.spec);
> +      }

Looking at shareSelection and copySelection, I think you should also put a call to this._closeSelection() at the end of this function. I would also prefer if you placed this method down next to those other two methods.

::: mobile/android/chrome/content/browser.js
@@ +5813,5 @@
>    }
>  };
>  
>  var ClipboardHelper = {
> +  _searchMenuItem: -1, //Recorded so it can be removed/replaced when default engine changed.

Nit: Place comment above property, and also put a space between the "//" and the text of the comment.

@@ +5823,5 @@
>      NativeWindow.contextmenus.add(Strings.browser.GetStringFromName("contextmenu.selectAll"), ClipboardHelper.selectAllContext, ClipboardHelper.selectAll.bind(ClipboardHelper));
>      NativeWindow.contextmenus.add(Strings.browser.GetStringFromName("contextmenu.share"), ClipboardHelper.shareContext, ClipboardHelper.share.bind(ClipboardHelper));
>      NativeWindow.contextmenus.add(Strings.browser.GetStringFromName("contextmenu.paste"), ClipboardHelper.pasteContext, ClipboardHelper.paste.bind(ClipboardHelper));
>      NativeWindow.contextmenus.add(Strings.browser.GetStringFromName("contextmenu.changeInputMethod"), NativeWindow.contextmenus.textContext, ClipboardHelper.inputMethod.bind(ClipboardHelper));
> +    this._searchMenuItem = NativeWindow.contextmenus.add(Strings.browser.formatStringFromName("contextmenu.search", [Services.search.defaultEngine.name], 1), ClipboardHelper.searchWithContext, ClipboardHelper.searchWith.bind(ClipboardHelper));

Nit: Put a blank line above this line to make this more readable.

@@ +5824,5 @@
>      NativeWindow.contextmenus.add(Strings.browser.GetStringFromName("contextmenu.share"), ClipboardHelper.shareContext, ClipboardHelper.share.bind(ClipboardHelper));
>      NativeWindow.contextmenus.add(Strings.browser.GetStringFromName("contextmenu.paste"), ClipboardHelper.pasteContext, ClipboardHelper.paste.bind(ClipboardHelper));
>      NativeWindow.contextmenus.add(Strings.browser.GetStringFromName("contextmenu.changeInputMethod"), NativeWindow.contextmenus.textContext, ClipboardHelper.inputMethod.bind(ClipboardHelper));
> +    this._searchMenuItem = NativeWindow.contextmenus.add(Strings.browser.formatStringFromName("contextmenu.search", [Services.search.defaultEngine.name], 1), ClipboardHelper.searchWithContext, ClipboardHelper.searchWith.bind(ClipboardHelper));
> +    Services.obs.addObserver(this, "browser-search-engine-modified", false); //Watch for changes to the default search engine so the above label can be tweaked.

Same nit about the comment.

You should also add an uninit method that removes this observer at shutdown. See BrowserApp.shutdown for examples of other objects that have uninit methods.

@@ +5830,5 @@
> +
> +  observe: function observe(aSubject, aTopic, aData) {
> +      if (aTopic == "browser-search-engine-modified" && aData == "engine-default") {
> +          NativeWindow.contextmenus.remove(this._searchMenuItem); //Update search with context menu element...
> +          this._searchMenuItem = NativeWindow.contextmenus.add(Strings.browser.formatStringFromName("contextmenu.search", [Services.search.defaultEngine.name], 1), ClipboardHelper.searchWithContext, ClipboardHelper.searchWith.bind(ClipboardHelper));

I know this is just one line, but let's factor this out into a helper method, since this exactly the same as up above and relatively complicated (you may also want to factor the label out into a local variable to make it this more readable. Something like _addSearchMenuItem would be a good name for that helper method.

@@ +5870,5 @@
>      SelectionHandler.selectAll(aElement, aX, aY);
>    },
>  
> +  searchWith: function(aElement) {
> +    SelectionHandler.searchSelection(aElement);

Nice, this is much cleaner (and more consistent with the neighboring code).

@@ +5943,5 @@
>      }
>    },
>  
> +  searchWithContext: {
> +      matches: function (aElement, aX, aY) {

Nit: Give this function a name (makes console messages better in the unlikely event of an error).
Attachment #771732 - Flags: review?(margaret.leibovic) → review-
Attached patch V4 - More denitting. (obsolete) — Splinter Review
Denitting applied.
Attachment #771732 - Attachment is obsolete: true
Attachment #772525 - Flags: review?(margaret.leibovic)
Comment on attachment 772525 [details] [diff] [review]
V4 - More denitting.

Review of attachment 772525 [details] [diff] [review]:
-----------------------------------------------------------------

This looks good, but you should address these additional comments before landing.

::: mobile/android/chrome/content/SelectionHandler.js
@@ +388,5 @@
>      this._closeSelection();
>    },
>  
> +  searchSelection: function sh_searchSelection() {
> +    let string = SelectionHandler._getSelectedText();

Oops, sorry I didn't notice this in the last patch, this should just be this._getSelectedText().

@@ +392,5 @@
> +    let string = SelectionHandler._getSelectedText();
> +    if (string) {
> +      let req = Services.search.defaultEngine.getSubmission(string);
> +      BrowserApp.selectOrOpenTab(req.uri.spec);
> +      this._closeSelection();

copySelection/shareSelection both close the selection regardless of whether or not there was a valid selection string, so we should probably do that here as well. Also, I feel like I would like us to follow the same variable naming convention as in those methods (selectedText instead of string). Sorry for being so nit-picky! I feel like this has become an exercise is matching neighboring code style :)

::: mobile/android/chrome/content/browser.js
@@ +5831,5 @@
> +    Services.obs.addObserver(this, "browser-search-engine-modified", false);
> +  },
> +
> +  uninit: function uninit() {
> +    Services.obs.removeObserver(this, "browser-search-engine-modified", false);

removeObserver only takes two parameters:
http://mxr.mozilla.org/mozilla-central/source/xpcom/ds/nsIObserverService.idl#50
Attachment #772525 - Flags: review?(margaret.leibovic) → review+
I really did manage to pack an impressive number of nits into such a small patch.
Attachment #772525 - Attachment is obsolete: true
Attachment #772783 - Flags: review?(margaret.leibovic)
Comment on attachment 772783 [details] [diff] [review]
Patch providing this feature.. V5: Return of the nits.

Nice :)
Attachment #772783 - Flags: review?(margaret.leibovic) → review+
Keywords: checkin-needed
Chris pushed this to try to see if it was indeed the offending changeset in that orange push:
https://tbpl.mozilla.org/?tree=Try&rev=d5096ac6e9d6
Btw, areweslimyet.com/mobile reported a startup memory spike recently that went away a few pushes later. The regression range [1] and fix range [2] seem to implicate this patch.

[1] http://hg.mozilla.org/integration/mozilla-inbound/pushloghtml?fromchange=468b35185c44&tochange=86e71d868f45
[2] http://hg.mozilla.org/integration/mozilla-inbound/pushloghtml?fromchange=faa78d7c3c42&tochange=441eb0b1eb85

Once the test failures are sorted out we should also check for memory regressions before re-landing.
(In reply to :Margaret Leibovic from comment #27)
> Chris pushed this to try to see if it was indeed the offending changeset in
> that orange push:
> https://tbpl.mozilla.org/?tree=Try&rev=d5096ac6e9d6

Looks like this patch is to blame after all...

Chris, can you try to get robocop tests running locally and see if you can reproduce this failure locally? I was the one who wrote that test, so I can look at it more closely.

The first thing to experiment with would be getting rid of the observer (that might have caused the memory spike kats saw). However, I also wonder if the call to Services.search.defaultEngine in searchWithContext is causing the search service to now be initialized before our distribution is set up, tickling some race condition. I actually don't think we need that check, so we could get rid of it if necessary, but it would be unfortunate for that race condition to exist.
Gavin tells me it's actually bad to be calling Services.search.defaultEngine like this because it will synchronously initialize the search service, which is a bad thing to be doing during startup regardless of whether or not it causes a test failure. So let's get rid of that, and hopefully that will fix the test issue.
(In reply to :Margaret Leibovic from comment #30)
> Gavin tells me it's actually bad to be calling Services.search.defaultEngine
> like this because it will synchronously initialize the search service, which
> is a bad thing to be doing during startup regardless of whether or not it
> causes a test failure. So let's get rid of that, and hopefully that will fix
> the test issue.

I pushed to try to test out this theory:
https://tbpl.mozilla.org/?tree=Try&rev=25bda688e1f7
(In reply to :Margaret Leibovic from comment #31)
> (In reply to :Margaret Leibovic from comment #30)
> > Gavin tells me it's actually bad to be calling Services.search.defaultEngine
> > like this because it will synchronously initialize the search service, which
> > is a bad thing to be doing during startup regardless of whether or not it
> > causes a test failure. So let's get rid of that, and hopefully that will fix
> > the test issue.
> 
> I pushed to try to test out this theory:
> https://tbpl.mozilla.org/?tree=Try&rev=25bda688e1f7

That didn't work :(

But I noticed we get the search engine name in _setSearchMenuItem. I made another push to try to see if this is the problem:
https://tbpl.mozilla.org/?tree=Try&rev=0fbcd12406c4

If it is, maybe we can avoid calling _setSearchMenuItem in init, and just wait for the observer to be notified (which it should be whenever the search service gets initialized).
Yes, it seems we could lazily set the string when the contextmenu is being build - that might be better for startup performance, anyway.
(In reply to :Margaret Leibovic from comment #32)
> (In reply to :Margaret Leibovic from comment #31)
> > (In reply to :Margaret Leibovic from comment #30)
> > > Gavin tells me it's actually bad to be calling Services.search.defaultEngine
> > > like this because it will synchronously initialize the search service, which
> > > is a bad thing to be doing during startup regardless of whether or not it
> > > causes a test failure. So let's get rid of that, and hopefully that will fix
> > > the test issue.
> > 
> > I pushed to try to test out this theory:
> > https://tbpl.mozilla.org/?tree=Try&rev=25bda688e1f7
> 
> That didn't work :(
> 
> But I noticed we get the search engine name in _setSearchMenuItem. I made
> another push to try to see if this is the problem:
> https://tbpl.mozilla.org/?tree=Try&rev=0fbcd12406c4
> 
> If it is, maybe we can avoid calling _setSearchMenuItem in init, and just
> wait for the observer to be notified (which it should be whenever the search
> service gets initialized).

Aha, this is green. So let's just try a patch that follows this suggestion (initializing the contextmenu item only when we observe the notification).
Attached patch V6 - No more oranges. (obsolete) — Splinter Review
A patch that doesn't break Firefox.
Attachment #772783 - Attachment is obsolete: true
Attachment #778641 - Flags: review?(margaret.leibovic)
Comment on attachment 778641 [details] [diff] [review]
V6 - No more oranges.

Review of attachment 778641 [details] [diff] [review]:
-----------------------------------------------------------------

This patch is different than what I had in mind... is there a reason you got rid of the observer? This will remove/add the menuitem every time _sendToContent is called, which seems like overkill. It also feels un-modular to be calling ClipboardHelper._setSearchMenuItem in _sendToContent.

My suggestion from comment 32 was just to avoid calling _setSearchMenuItem in init, and instead only do it when we observe the notification. Did you try that?
Comment on attachment 778641 [details] [diff] [review]
V6 - No more oranges.

>+  _setSearchMenuItem: function setSearchMenuItem() {
>+    if (this._searchMenuItem) {
>+      NativeWindow.contextmenus.remove(this._searchMenuItem);
>+    }
>+    this._searchMenuItem = NativeWindow.contextmenus.add(Strings.browser.formatStringFromName("contextmenu.search", [Services.search.defaultEngine.name], 1), ClipboardHelper.searchWithContext, ClipboardHelper.searchWith.bind(ClipboardHelper));
>   },

drive-by:
* rename to addSearchMenu ?
* no need for the '_' since it's used publicly
(In reply to Mark Finkle (:mfinkle) from comment #38)
> Comment on attachment 778641 [details] [diff] [review]
> V6 - No more oranges.
> 
> >+  _setSearchMenuItem: function setSearchMenuItem() {
> >+    if (this._searchMenuItem) {
> >+      NativeWindow.contextmenus.remove(this._searchMenuItem);
> >+    }
> >+    this._searchMenuItem = NativeWindow.contextmenus.add(Strings.browser.formatStringFromName("contextmenu.search", [Services.search.defaultEngine.name], 1), ClipboardHelper.searchWithContext, ClipboardHelper.searchWith.bind(ClipboardHelper));
> >   },
> 
> drive-by:
> * rename to addSearchMenu ?
> * no need for the '_' since it's used publicly

mfinkle, do you like this new approach of removing/adding the menuitem in _sendToContent, as opposed to when a default search engine is set? I feel like it's more elegant to just do it when the search engine is set.
(In reply to :Margaret Leibovic from comment #39)

> mfinkle, do you like this new approach of removing/adding the menuitem in
> _sendToContent, as opposed to when a default search engine is set? I feel
> like it's more elegant to just do it when the search engine is set.

Honestly never looked at it. Looking now...
Doing this when the menu is created is a tad overkill, but doing it just when search engine changed events come in leads to it never getting set until you go into the preferences and change your search engine, I believe - this is why I added it to init in the first place.

But now we've determined that doing this in init isn't good it's not hugely clear how to proceed. I guess we could check for existence when the menu is about to be shown and if the item does not exist then create it, as well as listening for search engine modified events to alter it at that point (So effectively the first call to show the menu becomes a sort of init) - but this seems somewhat ugly.
Comment on attachment 778641 [details] [diff] [review]
V6 - No more oranges.

Following discussion on IRC, let's have _sendToContent fire a notification that ClipboardHelper can listen for to set up the menuitem, instead of directly calling into ClipboardHelper from _sendToContent. We could name it something like "prepare-context-menu" (not sure if I like that, I bet mfinkle will chime in with a naming suggestion).

As a follow-up, it could be nice to look into using a notification like that as a different way for people to register context menu items, as opposed to using context matching on a potentially large list of context items.
Attachment #778641 - Flags: review?(margaret.leibovic) → review-
(In reply to Chris Kitching [:ckitching] from comment #41)
> Doing this when the menu is created is a tad overkill, but doing it just
> when search engine changed events come in leads to it never getting set
> until you go into the preferences and change your search engine, I believe -
> this is why I added it to init in the first place.
> 
> But now we've determined that doing this in init isn't good it's not hugely
> clear how to proceed. I guess we could check for existence when the menu is
> about to be shown and if the item does not exist then create it, as well as
> listening for search engine modified events to alter it at that point (So
> effectively the first call to show the menu becomes a sort of init) - but
> this seems somewhat ugly.

Sorry, didn't see this last comment. We can just do the add/remove business when _sendToContent is called like your current patch does (all those calls to .matches are probably more of a perf bottleneck in that function anyway). But let's just do it with a notification/observer instead of directly calling into ClipboardHelper.
Attached patch V7 - Notify-observer used. (obsolete) — Splinter Review
Attachment #778641 - Attachment is obsolete: true
Attachment #781796 - Flags: review?(margaret.leibovic)
Comment on attachment 781796 [details] [diff] [review]
V7 - Notify-observer used.

Review of attachment 781796 [details] [diff] [review]:
-----------------------------------------------------------------

This is looking good, but let's land a patch with a better notification topic name.

::: mobile/android/chrome/content/browser.js
@@ +2004,5 @@
>  
>        this.menuitems = [];
>        let menuitemsSet = false;
>  
> +      // It's time to set the search menu item - we avoided doing it on startup so we can get away without the search service for longer.

This notification isn't specifically about the search menuitem, so this comment shouldn't talk about it.

@@ +2005,5 @@
>        this.menuitems = [];
>        let menuitemsSet = false;
>  
> +      // It's time to set the search menu item - we avoided doing it on startup so we can get away without the search service for longer.
> +      Services.obs.notifyObservers(null, "ContextMenu:Open", "");

I would prefer if we used a topic that better describes exactly when this notification is fired, which is before we prepare the list of items to show. In comment 42 I suggested "prepare-context-menu". But maybe "before-build-contextmenu" would be better. We can bikeshed on names, but I think we should pick something better than "ContextMenu:Open", since that's not really what this notification represents.

Also, as a convention, notifications that are just on the gecko side use foo-bar formatting, instead of Foo:Bar formatting. It's not really a big deal, but it's nice to be consistent.

@@ +5923,5 @@
>      NativeWindow.contextmenus.add(Strings.browser.GetStringFromName("contextmenu.selectAll"), ClipboardHelper.selectAllContext, ClipboardHelper.selectAll.bind(ClipboardHelper));
>      NativeWindow.contextmenus.add(Strings.browser.GetStringFromName("contextmenu.share"), ClipboardHelper.shareContext, ClipboardHelper.share.bind(ClipboardHelper));
>      NativeWindow.contextmenus.add(Strings.browser.GetStringFromName("contextmenu.paste"), ClipboardHelper.pasteContext, ClipboardHelper.paste.bind(ClipboardHelper));
>      NativeWindow.contextmenus.add(Strings.browser.GetStringFromName("contextmenu.changeInputMethod"), NativeWindow.contextmenus.textContext, ClipboardHelper.inputMethod.bind(ClipboardHelper));
> +    Services.obs.addObserver(this, "ContextMenu:Open", false);

Please put a blank line above this, and add a comment about why we're adding this. Something similar to that comment you currently have up in _sendToContent would be good.

@@ +5927,5 @@
> +    Services.obs.addObserver(this, "ContextMenu:Open", false);
> +  },
> +
> +  uninit: function ch_uninit() {
> +    Services.obs.removeObserver(this, "ContextMenu:Open", false);

removeObserver only takes two parameters, get rid of the third.
Attachment #781796 - Flags: review?(margaret.leibovic) → feedback+
Round we go...
Attachment #781796 - Attachment is obsolete: true
Attachment #781831 - Flags: review?(margaret.leibovic)
Comment on attachment 781831 [details] [diff] [review]
V8 - Better names and even more nits.

This looks great, thanks!

Let's push to try before landing this, just to double check that things are still green with these changes.
Attachment #781831 - Flags: review?(margaret.leibovic) → review+
Looks shiny and green.. ish. Should I be worried about the rc1 orange that went green on restart? I guess this is an intermittent bug in the test, not my patch?
(In reply to Chris Kitching [:ckitching] from comment #49)
> Looks shiny and green.. ish. Should I be worried about the rc1 orange that
> went green on restart? I guess this is an intermittent bug in the test, not
> my patch?

Yeah, that's an intermittent failure. (Bug 851861)
Splendid. Let's land this.
Keywords: checkin-needed
https://hg.mozilla.org/integration/fx-team/rev/22c60e4b3242
Keywords: checkin-needed
Whiteboard: parity-desktop, parity-chrome → parity-desktop, parity-chrome[fixed-in-fx-team]
https://hg.mozilla.org/mozilla-central/rev/22c60e4b3242
Status: ASSIGNED → RESOLVED
Closed: 11 years ago
Resolution: --- → FIXED
Whiteboard: parity-desktop, parity-chrome[fixed-in-fx-team] → parity-desktop, parity-chrome
Target Milestone: --- → Firefox 25
When you add strings with variables, please add a localization comment explaining what the variable is. I'll open a follow-up bug for that.
Depends on: 899440
Depends on: 900141
Depends on: 907918
Product: Firefox for Android → Firefox for Android Graveyard
You need to log in before you can comment on or make changes to this bug.

Attachment

General

Created:
Updated:
Size: