Commit Graph

23875 Commits

Author SHA1 Message Date
Wes Kocher
9f43db79d6 Backed out changeset 79be0402cbdb (bug 1139460) 2015-03-27 15:31:20 -07:00
Wes Kocher
0519e608dd Backed out changeset d7a94bbfa3ef (bug 1140558) 2015-03-27 15:31:17 -07:00
Wes Kocher
55ba84b990 Backed out changeset 9623fa2b2e16 (bug 1140558) 2015-03-27 15:31:15 -07:00
Wes Kocher
430e88051c Backed out changeset a54f84a3d265 (bug 1140558) 2015-03-27 15:31:14 -07:00
Wes Kocher
41af6d4867 Backed out changeset d3512bb40d24 (bug 1140558) 2015-03-27 15:31:13 -07:00
Wes Kocher
8238225719 Backed out changeset 756c80951bbb (bug 1143714) 2015-03-27 15:31:11 -07:00
Wes Kocher
c983c8a239 Backed out changeset f8ae18a7d017 (bug 1143796) 2015-03-27 15:31:10 -07:00
Wes Kocher
05cb6b0396 Backed out changeset 208c445781e7 (bug 1143796) 2015-03-27 15:31:09 -07:00
Wes Kocher
568aefaabe Backed out changeset e0ed9413cc17 (bug 1139751) 2015-03-27 15:31:07 -07:00
Wes Kocher
537b79d4e2 Backed out changeset 4d163f1939b5 (bug 1139751) 2015-03-27 15:31:06 -07:00
Georg Fritzsche
2df92a99f2 Bug 1139751 - Fix aborted-session saves that can race to after the shutdown aborted-session removal. r=vladan 2015-03-27 21:01:20 +01:00
Georg Fritzsche
398d78d3a6 Bug 1139751 - Try to collect data for Telemetry pings when the user is idle. r=vladan 2015-03-27 21:01:20 +01:00
Alessio Placitelli
65cb08e64d Bug 1143796 - Add test for TelemetryScheduler tick interval changing when user is idle. r=gfritzsche 2015-03-27 21:01:20 +01:00
Alessio Placitelli
a89d46dba2 Bug 1143796 - Increase TelemetryScheduler ticking interval when user is not active. r=gfritzsche 2015-03-27 21:01:20 +01:00
Georg Fritzsche
625f07c3e4 Bug 1143714 - Throttle Telemetry environment changes. r=vladan 2015-03-27 21:01:20 +01:00
Alessio Placitelli
34ede99781 Bug 1140558 - Part 4 - Fix TelemetryEnvironment returning NaN for GFX RAM on error. r=gfritzsche 2015-03-27 21:01:20 +01:00
Georg Fritzsche
61fb02ccdb Bug 1140558 - Part 3 - Pass the old environment data to event listeners on environment changes. r=vladan 2015-03-27 21:01:19 +01:00
Georg Fritzsche
dc95828c2b Bug 1140558 - Part 2 - Make the testing deepEqual implementation shared properly in ObjectUtils.jsm. r=yoric 2015-03-27 21:01:19 +01:00
Benjamin Smedberg
029d16598b Bug 1140558 - Part 1 - Switch TelemetryEnvironment to a model which keeps track of the current state constantly and makes the current environment available synchronously. r=vladan/Dexter 2015-03-13 10:55:06 -04:00
Georg Fritzsche
555d0d1b63 Bug 1139460 - Part 3 - Make TelemetryPing shutdown block on pending submissions. r=yoric 2015-03-23 12:45:29 +01:00
Georg Fritzsche
6334a57687 Bug 1139460 - Part 2 - Overhaul telemetry ping submission code. r=vladan 2015-03-20 14:32:35 +01:00
Georg Fritzsche
6dcdf98bfd Bug 1139460 - Part 1 - Avoid Telemetry payload data changes after collection. r=vladan 2015-03-18 12:35:49 +01:00
Ryan VanderMeulen
ca58b815ec Merge m-c to fx-team. a=merge 2015-03-27 12:21:41 -04:00
Ryan VanderMeulen
9c0db5ac32 Merge m-c to inbound. a=merge
CLOSED TREE
2015-03-27 11:17:04 -04:00
Nick Fitzgerald
5c015237c1 Bug 1147656 - Make the profiler's buffer bigger. r=jsantell, r=djvj 2015-03-25 16:08:00 -04:00
Alessio Placitelli
6a39d1151b Bug 1137222 - Submit subsession-specific value for simpleMeasurements.activeTicks. r=gfritzsche 2015-03-24 10:48:00 +01:00
Tim Taubert
e031a2283c Bug 1100294 - PlacesUtils.keywords.fetch() should, instead of throwing, resolve to null when passing an empty string r=mak 2015-03-27 12:21:27 +01:00
Tim Taubert
b344a1a003 Bug 1100294 - Remove remaining uses of PlacesUtils.getURLAndPostDataForKeyword() from tests r=mak 2015-03-27 09:16:25 +01:00
Tim Taubert
99d1a0761d Bug 1100294 - Deprecate PlacesUtils.getURLAndPostDataForKeyword() and turn getShortcutOrURIAndPostData() into a task that uses the new keywords API r=mak 2015-03-27 09:16:04 +01:00
Geoff Brown
cf739e07e8 Bug 1140148 - Update mochitest manifests for Android 4.3 emulator; r=dminor 2015-03-26 20:35:35 -06:00
Wes Kocher
dd8a8fcae7 Merge m-c to inbound a=merge CLOSED TREE 2015-03-26 17:46:35 -07:00
Mike Hommey
6ee628d425 Bug 1147283 - Replace mozpack.path with mozpath. r=mshal
Back when mozpack.path was added, it was used as:

  import mozpack.path
  mozpack.path.func()

Nowadays, the common idiom is:

  import mozpack.path as mozpath
  mozpath.func()

because it's shorter.

$ git grep mozpath\\. | wc -l
423
$ git grep mozpack.path\\. | wc -l
123

This change was done with:
$ git grep -l mozpack.path\\. | xargs sed -i 's/mozpack\.path\./mozpath./g'
$ git grep -l 'import mozpack.path$' | xargs sed -i 's/import mozpack.path$/\0 as mozpath/'
$ (pat='import mozpack.path as mozpath'; git grep -l "$pat" | xargs sed -i "1,/$pat/b;/$pat/d")
2015-03-27 08:13:16 +09:00
Wes Kocher
3c4a21dc70 Backed out changeset 6306a0c0be65 (bug 1100294) for bc1 orange CLOSED TREE 2015-03-26 14:30:21 -07:00
Wes Kocher
0667f1171e Backed out changeset a4cc519364b5 (bug 1100294) 2015-03-26 14:30:20 -07:00
Wes Kocher
84993db5da Backed out changeset 54f37e45c70b (bug 1125117) for bc1 orange CLOSED TREE 2015-03-26 14:23:55 -07:00
J. Ryan Stinnett
c35dd02420 Bug 1147042 - Rename attachProcess to getProcess. r=ochameau 2015-03-24 14:59:53 -05:00
Eddy Bruël
5cb6262ab5 Bug 1141507 - Refactor breakpoint sliding for source mapped sources;r=jlong 2015-03-27 07:49:16 +01:00
Deepak Koli
dabbd94919 Bug 1039540 - In-content preferences: Disable the sorting of rows of sub-dialogs when right clicking; r=MattN
Review comments applied by MattN
2015-03-26 18:02:49 -07:00
Wes Kocher
e7849acd16 Backed out changeset d9c0f2a3a0a6 (bug 1144856) for mochitest-5 orange 2015-03-26 17:43:20 -07:00
Paolo Amadini
14d286ed86 Bug 1144856 - Change the doorhanger messages to mention "login" instead of "password". r=MattN 2015-03-26 16:59:05 -07:00
Marco Bonardo
0840844637 Bug 1125117 - Use the new keywords API in autocomplete. r=ttaubert 2015-03-26 21:16:07 +01:00
Margaret Leibovic
a4e342f9b6 Bug 1146373 - Don't resize reader view images in JS. r=Gijs 2015-03-23 16:55:26 -07:00
Margaret Leibovic
ab6f605ce2 Bug 1147122 - Restore reader view error message if about:reader fails when user clicks reader button. r=Gijs 2015-03-24 17:30:43 -07:00
Tom Tromey
dd19be0460 Bug 1124456 - Check channel's contentPolicyType to see if it is XMLHttpRequest. r=vporof 2015-03-27 06:00:00 -04:00
Brian Grinstead
20488e8e81 Bug 1145914 - Make the inspector actor send over only the most recent change for each attribute;r=dcamp 2015-03-27 07:31:14 -07:00
Brian Grinstead
ed52ab097a Bug 792063 - Add $_ console shortcut to return the previous command result;r=past 2015-03-27 07:28:19 -07:00
Alexandre Poirot
cecc50562d Bug 1134180 - Introduce RootActor.getTab to prevent creating TabActor for all tabs. r=past 2015-03-25 09:30:00 -04:00
Patrick Brosset
70df4d1235 Bug 1106272 - Part 1: Remove the selector highlight on hover and add a selector icon instead. r=miker 2015-03-24 14:42:27 +01:00
Marco Bonardo
40804828e2 Bug 1125117 - Use the new keywords API in autocomplete. r=ttaubert 2015-03-26 21:16:07 +01:00
Francois Marier
d86c398568 Bug 1138979 - Pref to turn TP on when in Private Browsing mode. r=mmc, r=ehsan 2015-03-24 14:10:00 -04:00