Closed
Bug 1024110
Opened 10 years ago
Closed 10 years ago
Change Aurora's default profile behavior to use channel-specific profiles
Categories
(Firefox :: General, defect)
Firefox
General
Tracking
()
People
(Reporter: canuckistani, Assigned: past)
References
(Depends on 1 open bug, Blocks 1 open bug)
Details
Attachments
(1 file, 6 obsolete files)
20.25 KB,
patch
|
lsblakk
:
approval-mozilla-aurora+
|
Details | Diff | Splinter Review |
Gavin proposed this here:
https://wiki.mozilla.org/User:GavinSharp/Profile-proposal
It was posted and discussed somewhat here:
https://groups.google.com/forum/?fromgroups=&hl=en#!topic/firefox-dev/c2PyBpwWmgw
I think the next step is to assign an engineer to work on this, so logging this bug.
Comment 1•10 years ago
|
||
IMHO, this is an unneeded complication. Anyone running aurora or nightly should be able to create a shortcut with a specific profile option and a specific version of firefox.
For example, I has a shortcut to run nightly against an empty profile for verifying that problems are not caused by my customization.
Comment 2•10 years ago
|
||
We're doing this for the people who don't want to have to learn about Firefox's command line flags or profile manager, but are still interested in running two versions side-by-side. I think that potential audience is large enough to be worth the complication.
Comment 3•10 years ago
|
||
Not being "easily" able to run both release and nightly (or aurora) side by side out of the box is one of the number one complaints I've gotten from developers who use chrome daily for their work (and their one of our target audience for FirefoxDevTools). I guess this is a pretty general complaint.
This bug would help a lot!
Comment 4•10 years ago
|
||
I even documented the procedure of setting up a second profile for Nightly on the Super User forum: http://superuser.com/questions/679797/how-to-run-firefox-nightly-alongside-firefox-at-the-same-time
This is definitely something Mozilla should get rid of. Just let people install stable and Nightly side-by-side like Chrome and Canary.
Comment 6•10 years ago
|
||
Gavin, is this something we could consider for the prioritized backlog, per e.g. comment #3 ? :-)
Flags: needinfo?(gavin.sharp)
Flags: firefox-backlog+
Comment 7•10 years ago
|
||
I've been trying to get the devtools team to take this unsuccessfully, but I heard it might fit into their future roadmap.
Flags: needinfo?(gavin.sharp)
Updated•10 years ago
|
OS: Mac OS X → All
Reporter | ||
Updated•10 years ago
|
Blocks: fx-dev-edition
Comment 9•10 years ago
|
||
Note that there are additional complexities to work out, such as what to do with remoting.
Reporter | ||
Updated•10 years ago
|
Summary: Change Nightly/Aurora's default profile behavior to use channel-specific profiles → Change Aurora's default profile behavior to use channel-specific profiles
Assignee | ||
Comment 10•10 years ago
|
||
I've started looking at this and here is what I've come up with so far. It's still in early stages, but one thing I'm not sure about is whether just building and running with MOZ_UPDATE_CHANNEL=aurora in my terminal is enough to simulate the behavior of an aurora binary installation.
I'm currently trying to implement Gavin's proposal without UI (just manual editing of profiles.ini) and I'll look into UI stuff later.
Assignee | ||
Updated•10 years ago
|
Assignee: nobody → past
Status: NEW → ASSIGNED
Assignee | ||
Comment 12•10 years ago
|
||
Now with both in-content and traditional pref UI. Still WIP.
Assignee | ||
Updated•10 years ago
|
Attachment #8488693 -
Attachment is obsolete: true
Assignee | ||
Comment 13•10 years ago
|
||
This version seems to work well and has survived all my testing so far. I think I got everything from this implemented: https://wiki.mozilla.org/User:GavinSharp/Profile-proposal
I don't know if we have tests for this sort of thing (couldn't find any), so I'm asking for review to get the ball rolling. I'll post a link to try builds shortly so you can play with them and let me know if you can spot anything wrong.
Attachment #8492192 -
Flags: review?(gavin.sharp)
Attachment #8492192 -
Flags: feedback?(jgriffiths)
Assignee | ||
Updated•10 years ago
|
Attachment #8490170 -
Attachment is obsolete: true
Assignee | ||
Comment 14•10 years ago
|
||
Assignee | ||
Comment 15•10 years ago
|
||
I've also been thinking about the test matrix for this feature and I've jotted down my thoughts here:
https://etherpad.mozilla.org/yWUrraXqXk
I'll be happy for any feedback on that, too.
Comment 16•10 years ago
|
||
Comment on attachment 8492192 [details] [diff] [review]
Change Aurora's default profile behavior to use channel-specific profiles
Is this intended to allow people to run Firefox and Aurora simultaneously?
I'm worried about the toolkit/profile usage here. The other option for this is to give Aurora an entirely separate application name, so that it has an entirely separate profiles.ini and remoting "just works". Then, to support users who want to share a profile, you can point an aurora profile name at the existing Firefox profile directory.
Some potential issues: until Firefox-release gets this change, any time Firefox release profile manager writes profiles.ini, the aurora-default will be lost. It may be worthwhile to uplift the profile-writing code to release before making the other changes in this patch.
The docs for nsIToolkitProfileService.newProfileMode are unclear, and "new" is weird in this context. Please consider an attribute name like "separateAuroraMode" so that this is clear long-term (and you'll need to rev the UUID to avoid build bustage).
Now that the default profile is stored on the nsToolkitProfile object, how do you ensure that multiple profiles don't have the default flag set on them? It looks like you could easily end up in that situation by calling nsToolkitProfile::SetDefault on multiple objects. Why is is better to store that state on the nsToolkitProfile instead of just renaming nsToolkitProfileService::mChosen to ::mDefault and adding a separate mDefaultAurora there?
Assignee | ||
Comment 17•10 years ago
|
||
Some quick questions and answers inline until I have some time to get back at this.
(In reply to Benjamin Smedberg [:bsmedberg] from comment #16)
> I'm worried about the toolkit/profile usage here. The other option for this
> is to give Aurora an entirely separate application name, so that it has an
> entirely separate profiles.ini and remoting "just works". Then, to support
> users who want to share a profile, you can point an aurora profile name at
> the existing Firefox profile directory.
How do you point a profile name at an existing directory? Using symlinks? If so, does that work for Windows XP? IIRC recent Windows versions have equivalent functionality, but I don't know about XP.
Also, what does "remoting" mean in this context? You had mentioned that in comment 9 as well and I want to make sure I'm not overlooking anything important.
> Some potential issues: until Firefox-release gets this change, any time
> Firefox release profile manager writes profiles.ini, the aurora-default will
> be lost. It may be worthwhile to uplift the profile-writing code to release
> before making the other changes in this patch.
Agreed.
> The docs for nsIToolkitProfileService.newProfileMode are unclear, and "new"
> is weird in this context. Please consider an attribute name like
> "separateAuroraMode" so that this is clear long-term (and you'll need to rev
> the UUID to avoid build bustage).
OK.
> Now that the default profile is stored on the nsToolkitProfile object, how
> do you ensure that multiple profiles don't have the default flag set on
> them? It looks like you could easily end up in that situation by calling
> nsToolkitProfile::SetDefault on multiple objects. Why is is better to store
> that state on the nsToolkitProfile instead of just renaming
> nsToolkitProfileService::mChosen to ::mDefault and adding a separate
> mDefaultAurora there?
It looks like mChosen has a specific purpose that this patch doesn't alter (the currently selected profile), so I guess I should add both mDefault and mDefaultAurora to nsToolkitProfileService? It does sound like a good idea of course.
Comment 18•10 years ago
|
||
I'm not knowledgeably enough to understand how this is proposed to work. So I'm just guessing.
In any case, I run the various versions by installing in the standard directory always. I run my standard profile always unless I'm testing a bug against an empty profile. (Backups are my friend if something really messes up).
I'm hoping this won't break that. And it leads me to think that if you want automatic different profiles for multiple installations, it should depend on the installation location, not the build version (release, aurora, nightly).
Assignee | ||
Comment 19•10 years ago
|
||
No, this patch won't break that workflow. Specifying a profile using -P or -profile still works as expected.
Assignee | ||
Comment 20•10 years ago
|
||
The previous try run wasn't configured to use the aurora update channel, so testing it is useless. Sorry about that. New try:
https://tbpl.mozilla.org/?tree=Try&rev=8312f0d3f8a6
I see that I need to make some changes for Windows, apart from bsmedberg's suggestions, so I didn't request a win32 build this time.
Assignee | ||
Comment 21•10 years ago
|
||
Comment on attachment 8492192 [details] [diff] [review]
Change Aurora's default profile behavior to use channel-specific profiles
Clearing feedback and review requests until I fix the Windows build failure.
Attachment #8492192 -
Flags: review?(gavin.sharp)
Attachment #8492192 -
Flags: feedback?(jgriffiths)
Updated•10 years ago
|
Hardware: x86 → All
Version: 30 Branch → Trunk
Assignee | ||
Comment 22•10 years ago
|
||
This version takes a slightly different path per our discussions with gavin, bsmedberg and others. It uses a hard-coded profile name for aurora and a separate name (internalName) for remoting. This way aurora can run simultaneously with other Firefox versions, either can be made the default browser and opening URLs from other apps to the default app works as expected. Using an additional AuroraDefault flag in profiles.ini to select the default aurora profile among many is left as a followup due to time constraints.
Assignee | ||
Updated•10 years ago
|
Attachment #8492192 -
Attachment is obsolete: true
Assignee | ||
Comment 23•10 years ago
|
||
Comment on attachment 8504112 [details] [diff] [review]
WIP v4
Try run only had unrelated oranges, so I'm asking for review:
https://treeherder.mozilla.org/ui/#/jobs?repo=try&revision=aa08d33a9962
Attachment #8504112 -
Flags: review?(gavin.sharp)
Attachment #8504112 -
Flags: review?(benjamin)
Comment 24•10 years ago
|
||
Comment on attachment 8504112 [details] [diff] [review]
WIP v4
Review of attachment 8504112 [details] [diff] [review]:
-----------------------------------------------------------------
A quick drive-by:
* I think we should change "internal name" to something better. "external name" seems closer to the truth, but this isn't descriptive either. "remote name" would be an improvement IMO.
* A better long-term solution might be to write this name to profiles.ini (and thus make the name an integral part of the service). This would allow us to have multiple profiles marked specifically as being for "firefox-dev".
In the short-term, we could assume a single profile (ie, first found with "remote=firefox-dev") is the default, but later we could have multiple profiles associated with a name. This would mean that later we'd need a way to define a profile as being the default for a given remote-name (and probably not with "Default=1", so older Firefoxes don't get confused)
This would also leave the way open to a smarter profile-chooser UI, along the lines of Gavin's '"old profile mode"/"new profile mode"' proposal - "new profile mode" could only show profiles associated with the current remote-name.
So tl;dr - in the short-term:
* Change internal-name to remote-name.
* New nsIToolkitProfile attribute "remoteName", written as the current remote-name when a profile is created.
* Profile choosing code in nsToolkitProfileService::Init() looks for the first matching remoteName attribute rather than a name of "auroradefault".
* It creates a new profile causing the new profile to get the remoteName=firefox-dev entry.
longer term: find the devils hiding in the details, allow multiple profiles with a single remoteName, then make a smart profile UI.
::: toolkit/profile/nsIToolkitProfileService.idl
@@ +19,5 @@
> readonly attribute nsISimpleEnumerator /*nsIToolkitProfile*/ profiles;
>
> attribute nsIToolkitProfile selectedProfile;
>
> + attribute nsIToolkitProfile defaultProfile;
Is this needed? I can only see usage inside the profile service itself.
::: toolkit/profile/nsToolkitProfileService.cpp
@@ +487,5 @@
> +#ifdef MOZ_DEV_EDITION
> + // Use the auroradefault profile if this is an Aurora build.
> + if (name.EqualsLiteral("auroradefault")) {
> + mChosen = currentProfile;
> + this->SetDefaultProfile(currentProfile);
I'm not sure exactly how Flush() is called, but it seems like if it ends up called by this process, the SetDefaultProfile call will cause the auroradefault profile to end up with the Default=1 line?
Comment 25•10 years ago
|
||
Comment on attachment 8504112 [details] [diff] [review]
WIP v4
Just chatted with Mark about this - the extra complication and potential loss of metadata from using old profile managers means I don't think we need to worry about his suggestions now. The "multiple profiles associated with a given 'edition'" functionality is not really a goal even in the long term.
I do agree that "internal name" is a bit of a strange name (and it's overall confusing to have basename/name/displayname/internalname etc.). "remotingName" is a better name, but only if we think it won't expand to be used for other stuff (which I think is the case?).
Similarly, shouldn't we pick a better name than "auroradefault"? If we're moving away from this being Aurora, we shouldn't leave that legacy name in there. "dev-edition-default"? Don't feel strongly, I guess we just want to avoid picking a generic enough name that people might already have a profile with that name (but even that isn't a big deal).
Shouldn't you omit the browser/confvars.sh change and only include that on Aurora where it will have a non-default value?
Nitpicking aside, I will leave the code review to Benjamin since he knows this code best, but this all looks sane to me.
Attachment #8504112 -
Flags: review?(gavin.sharp) → feedback+
Comment 26•10 years ago
|
||
That patch should fix tests related to webapprt.
Comment 27•10 years ago
|
||
Comment on attachment 8504112 [details] [diff] [review]
WIP v4
I do agree that this should be remotingName, not internalName (also the related confvars and such).
On nsXREAppData, internalName (remotingName) should be optional. If it is null, we should fall back to `name`. You can do the null-check-and-copy at http://hg.mozilla.org/mozilla-central/annotate/77f3ca1fe052/toolkit/xre/nsAppRunner.cpp#l4130
It doesn't appear that there is any code to read RemotingName from an actual .ini file. That should be added to the table at http://mxr.mozilla.org/mozilla-central/source/toolkit/xre/CreateAppData.cpp#110
On nsIToolkitProfileService, you need doccomments explaining the difference between .selectedProfile and .defaultProfile. It's not clear to me why we need both of them. Internally we need to keep track of them separately, but it's not clear to me why it matters externally. Going to mark r- just because of that. Ping me on IRC if we should talk about this.
Attachment #8504112 -
Flags: review?(benjamin) → review-
Reporter | ||
Comment 28•10 years ago
|
||
What's the current state of this? In testing from Gum of the most recent build, it doesn't work, meanng that Dev Edition uses the single default profile on the machine I'm using to test.
Assignee | ||
Comment 29•10 years ago
|
||
(In reply to Jeff Griffiths (:canuckistani) from comment #28)
> What's the current state of this? In testing from Gum of the most recent
> build, it doesn't work, meanng that Dev Edition uses the single default
> profile on the machine I'm using to test.
This was caused by a gum-specific configuration change that should be fixed in my last push. Thanks for catching this!
Comment 30•10 years ago
|
||
I'm having two questions:
For existing users on the aurora channel, will this essentially loose all profile data?
Abstractly, I'd see potential if a distinct-profile feature would also be available to partner repacks. Less so for partners, but more so for our own variants of Firefox, if we want to create them in the future.
Assignee | ||
Comment 31•10 years ago
|
||
(In reply to Axel Hecht [:Pike] from comment #30)
> I'm having two questions:
>
> For existing users on the aurora channel, will this essentially loose all
> profile data?
No, the profile will remain intact on disk. However, they would need to use Firefox Sync to get their profile data in the new profile. I have a patch in another bug that helps with this.
Alternatively, if they so choose, they could keep using their old profile from the command line:
firefox -P oldAuroraProfile
> Abstractly, I'd see potential if a distinct-profile feature would also be
> available to partner repacks. Less so for partners, but more so for our own
> variants of Firefox, if we want to create them in the future.
I think it should be trivial to generalize this code to consult a couple of environment variables when deciding whether to use this new path and what the default profile name should be. I would replace MOZ_DEV_EDITION with, say MOZ_SPECIAL_PROFILE and introduce an additional MOZ_SPECIAL_PROFILE_NAME. I would make the latter configurable with --with-special-profile and define MOZ_SPECIAL_EDITION conditionally on the presence of MOZ_SPECIAL_PROFILE_NAME.
However, it is not a good idea to do this now, since our time constraints are very tight.
Assignee | ||
Comment 32•10 years ago
|
||
I guess one could also remove the new dev-edition-default profile and rename their old one from the profile manager. This way they would permanently revert to what they had before.
Assignee | ||
Comment 33•10 years ago
|
||
In this version I incorporated the webapprt fix from Alex, as well as the comments from Mark, Gavin and Benjamin.
(In reply to Benjamin Smedberg [:bsmedberg] from comment #27)
> On nsXREAppData, internalName (remotingName) should be optional. If it is
> null, we should fall back to `name`.
It was already optional at configure time, but I also made it optional at runtime per your suggestion.
> On nsIToolkitProfileService, you need doccomments explaining the difference
> between .selectedProfile and .defaultProfile. It's not clear to me why we
> need both of them. Internally we need to keep track of them separately, but
> it's not clear to me why it matters externally.
I have one good reason for exposing the defaultProfile: in bug 1079835 I need to find the default profile from dev-edition, in order to migrate the sync credentials to the new profile. In the latest patch in that bug I'm adding an ini parser library to work around the lack of this property, but markh suggested that I wouldn't need that if I could find the default profile from script using the profile service. Updating that patch is next on my TODO list.
Attachment #8507095 -
Flags: review?(benjamin)
Assignee | ||
Updated•10 years ago
|
Attachment #8504112 -
Attachment is obsolete: true
Assignee | ||
Updated•10 years ago
|
Attachment #8506120 -
Attachment is obsolete: true
Comment 34•10 years ago
|
||
We've asked for data about the number of users over in https://bugzilla.mozilla.org/show_bug.cgi?id=1024110
I suspect that number to be quite low. If it is, then we should really be viewing sync as part of the problem and not part of the solution for data recovery or sharing. If the number of sync users is extremely low on aurora it might not even be worth the effort to try and find the sycn credenticals and get them shared across profiles.
Comment 35•10 years ago
|
||
Comment on attachment 8507095 [details] [diff] [review]
v5
>diff --git a/toolkit/xre/nsAppRunner.cpp b/toolkit/xre/nsAppRunner.cpp
>+ if (!mAppData->remotingName)
>+ mAppData->remotingName = strdup(mAppData->name);
Use { } braces, even for single-line conditions.
This should use SetAllocatedString rather than hand-strduping. We risk mismatched allocators otherwise.
r=me with that change.
A couple questions for you to verify:
* When running the profile manager in a "normal" Firefox, does the "Use the selected profile without asking at startup" checkbox still work? Both in the positive case and the negative case?
* Shouldn't we hide that checkbox when starting developer-edition, because it will be ineffective?
Attachment #8507095 -
Flags: review?(benjamin) → review+
Assignee | ||
Comment 36•10 years ago
|
||
(In reply to Benjamin Smedberg [:bsmedberg] from comment #35)
> * When running the profile manager in a "normal" Firefox, does the "Use the
> selected profile without asking at startup" checkbox still work? Both in the
> positive case and the negative case?
Yes, StartWithLastProfile is still modified by that checkbox.
> * Shouldn't we hide that checkbox when starting developer-edition, because
> it will be ineffective?
Perhaps we should, but so far I've been working with the assumption that we no longer want to make users use the profile manager for anything, if they are not already familiar with it. In a previous iteration of the patch I had added a new-profile-mode knob to the preferences dialog/tab, even though it was affecting profiles, so that it would be more discoverable by end users (no restart or command-line parameters required).
As a matter of fact, due to some last-minute additional requirements I am going to submit an additional patch on top of this one that will reintroduce the new-profile-mode (nee separate-profile-mode) as a checkbox in preferences. This way users will be able to opt-out of the separate profile behavior if they so wish.
If you feel strongly about making the StartWithLastProfile checkbox disabled/hidden in aurora when in separate-profile-mode (it will be effective as usual in normal mode), I can do it there.
Assignee | ||
Updated•10 years ago
|
Attachment #8507095 -
Attachment is obsolete: true
Assignee | ||
Comment 37•10 years ago
|
||
Comment 38•10 years ago
|
||
It just seems that *if* the user is using the profile manager with dev edition, they will end up having a useless checkbox, and so we should hide it because it doesn't do anything.
Assignee | ||
Comment 39•10 years ago
|
||
I wrote the patch to hide the checkbox in bug 1086936 and then it occurred to me that it still works even in Developer Edition: nsAppRunner, which is the only user of nsToolkitProfileService::GetStartWithLastProfile, actually calls its value "useDefault". And the purpose of useDefault is unsurprisingly to decide between using a "default profile" or displaying the profile manager to pick one.
Developer Edition overrides the definition of "default profile" in the above, to always choose a specific profile regardless of the Default=1 flag, but I didn't change the logic that handles the (arguably misnamed) startWithLastProfile flag. And I don't believe we want to: the service we strive to provide here is to hide the complexity of profile management and using a separate profile from inexperienced users, who haven't heard about -ProfileManager or -P <profile>. Experienced users should still be able to override everything we do here, either by using -P <profile>, the profile manager, or the new toggle I'm adding in bug 1086936.
Let me know if the above make sense to you.
Flags: needinfo?(benjamin)
Comment 40•10 years ago
|
||
Certainly *unchecking* the checkbox will always show the profile manager. But checking it will not start DevEdition with the currently-selected profile. Right?
Flags: needinfo?(benjamin) → needinfo?(past)
Assignee | ||
Comment 41•10 years ago
|
||
That is correct, having StartWithLastProfile=1 in profiles.ini will not affect the profile selection, in the separate-profile-mode that bug 1086936 introduces, which will be the default for DevEdition. In "old-way mode" it will continue to force profile selection to take Default=1 into account.
However, just to make sure there are no misunderstandings, if the user starts DevEdition with -ProfileManager and in the profile selection dialog picks another profile, that profile will be used for the current session only. Any new sessions that don't start via the profile manager will behave as explained above. That is still in the spirit of respecting user choice, and in particular the workflows of experienced users familiar with profiles and the profile manager.
Flags: needinfo?(past)
Comment 42•10 years ago
|
||
Maybe we should invert the checkbox wording then? Note that this doesn't need to block landing, it's just that the current wording is definitely incorrect in devedition when the box is checked.
Assignee | ||
Comment 43•10 years ago
|
||
OK, I proceeded with landing this patch and I can tweak the checkbox label in bug 1086936. What would be the proper wording in your opinion?
https://hg.mozilla.org/integration/fx-team/rev/1416eeab79a2
Status: ASSIGNED → RESOLVED
Closed: 10 years ago
Resolution: --- → FIXED
Target Milestone: --- → Firefox 36
Updated•10 years ago
|
Iteration: --- → 36.1
Flags: qe-verify?
Comment 45•10 years ago
|
||
Please see the following scenario:
1. Make sure that you are on a machine with 0 profiles.
2. Launch Aurora DevEdition (latest build from the gum twig). -> the dev-edition-default profile is created (the "Allow Firefox Developer Edition and Firefox to run at the same time" option is checked)
3. Launch Beta/Release/Nightly. -> this is not opened and the following message is received: "Firefox is already running, but is not responding. The old Firefox process must be closed to open a new window". No new profile is created.
Do you want me to fill a new bug for this problem?
Flags: needinfo?(past)
Assignee | ||
Comment 46•10 years ago
|
||
(In reply to Camelia Badau, QA [:cbadau] from comment #45)
> Do you want me to fill a new bug for this problem?
Yes please.
Flags: needinfo?(past)
Comment 47•10 years ago
|
||
(In reply to Panos Astithas [:past] (overloaded, please needinfo) from comment #46)
> (In reply to Camelia Badau, QA [:cbadau] from comment #45)
> > Do you want me to fill a new bug for this problem?
>
> Yes please.
I filled bug 1090967.
Assignee | ||
Comment 48•10 years ago
|
||
Comment on attachment 8508777 [details] [diff] [review]
v6
Approval Request Comment
[Feature/regressing bug #]: new feature for dev-edition
[User impact if declined]: dev-edition will not be able to run simultaneously as regular Firefox
[Describe test coverage new/current, TBPL]: tested on gum, m-c and fx-team
[Risks and why]: there is no doubt that this patch is not risk-free, but I believe we have stress-tested it enough and any other issues that come up can be fixed in followup bugs
[String/UUID change made/needed]: none
Attachment #8508777 -
Flags: approval-mozilla-aurora?
Assignee | ||
Updated•10 years ago
|
Whiteboard: [NO_UPLIFT]
Updated•10 years ago
|
Attachment #8508777 -
Flags: approval-mozilla-aurora? → approval-mozilla-aurora+
Comment 49•10 years ago
|
||
Whiteboard: [NO_UPLIFT]
Updated•10 years ago
|
status-firefox35:
--- → fixed
status-firefox36:
--- → fixed
Comment 50•10 years ago
|
||
This was already tested, and I don't think additional QA is needed.
Flags: qe-verify? → qe-verify-
Comment 51•10 years ago
|
||
Comment on attachment 8508777 [details] [diff] [review]
v6
>- if (mChosen == cur) {
>+ nsCOMPtr<nsIToolkitProfile> profile;
>+ rv = this->GetDefaultProfile(getter_AddRefs(profile));
>+ if (NS_SUCCEEDED(rv) && profile == cur) {
[Why not just replace mChosen with mDefault in the test?]
Comment 52•9 years ago
|
||
This bug is causing a significant problem: when the dev edition profile is entirely deleted, and StartWithLastProfile=1 is set FirefoxDeveloperEdition does not respect the user choice: it requires starting Fx with command line flags.
Comment 53•9 years ago
|
||
(In reply to Eitan Adler from comment #52)
> This bug is causing a significant problem: when the dev edition profile is
> entirely deleted, and StartWithLastProfile=1 is set FirefoxDeveloperEdition
> does not respect the user choice: it requires starting Fx with command line
> flags.
It's not clear to me what you mean by this. This is also not the best place to note this, so could you file a new bug with more details? That would be very helpful!
Flags: needinfo?(lists)
Updated•9 years ago
|
Flags: needinfo?(lists)
Comment 54•9 years ago
|
||
For reference: 1024110
Comment 55•9 years ago
|
||
For reference: I filed bug 1183152
You need to log in
before you can comment on or make changes to this bug.
Description
•