Wes Kocher
168eaceb20
Merge m-c to inbound, a=merge
...
MozReview-Commit-ID: IHPBV4z9vPi
2017-08-22 17:14:32 -07:00
Wes Kocher
6dd42e2664
Merge inbound to central, a=merge
...
MozReview-Commit-ID: BMWuqvmTljV
2017-08-22 17:07:23 -07:00
Kate Ustiuzhanina
5382ee1c76
Bug 1390441
- Fix usePingSenderOnShutdown test via reseting TelemetrySend in tests. r=gfritzsche
2017-08-22 15:28:18 +01:00
Jessica Jong
443ac20d5c
Bug 1371111 - Open picker when input element's padding area is clicked. r=mconley
...
Currently, we listen to click events on the xbl binding; but actually we should
listen to click events on the input element itself, so that we get called when
the padding area is clicked.
MozReview-Commit-ID: 8NQKrxSXUyL
--HG--
extra : amend_source : 6106cd61c85a94b8272f2c8ff9abc68320946cbb
2017-08-17 20:33:00 -04:00
Nicholas Nethercote
780a2e4aec
Bug 1390428
(part 4) - Remove still more nsXPIDLCString local variables. r=erahm.
...
These are all easy cases where an nsXPIDLCString local variable is set via
getter_Copies() and then is null checked. The patch uses IsVoid() to replace
the null checks (and get() and EqualsLiteral() calls to replace any implicit
conversions).
--HG--
extra : rebase_source : 484ad42a7816b34b86afbe072e04ba131c1619c6
2017-08-16 13:58:55 +10:00
flyingrub
692daa6f92
Bug 1389781 - Remove border-bottom from the header in common.css r=dao
...
MozReview-Commit-ID: G6Hh9igwpaI
--HG--
extra : rebase_source : db47e6a72ed0b3f08439fe47ea51ef336c0d8d43
2017-08-12 17:56:04 +02:00
Tim Nguyen
dd1510aec5
Bug 1392416 - Update notification icons to use photon assets. r=dao
...
MozReview-Commit-ID: A5Y0GDJcwh1
--HG--
extra : rebase_source : 40d5c6bd967ed2817b252506c5f3322e3d318e51
2017-08-22 17:19:15 +02:00
Sebastian Hengst
078e5787ea
merge mozilla-central to autoland. r=merge a=merge
2017-08-22 15:13:35 +02:00
Sebastian Hengst
03cbf11c2a
Backed out changeset 70bc0e060dd6 (bug 1385227)
...
MozReview-Commit-ID: LHxsFUC5eTg
2017-08-22 15:08:57 +02:00
Sebastian Hengst
75955d0246
merge mozilla-inbound to mozilla-central. r=merge a=merge
...
MozReview-Commit-ID: 8fJX1xXgzhD
2017-08-22 11:49:04 +02:00
Wes Kocher
02a5ad9edd
Merge m-c to inbound, a=merge
...
MozReview-Commit-ID: dovwD1TzZR
2017-08-21 17:10:59 -07:00
Wes Kocher
88c4efea2a
Merge inbound to m-c a=merge
...
MozReview-Commit-ID: 7PZEeFIzle5
2017-08-21 16:39:56 -07:00
Nicholas Nethercote
8a72cf2251
Bug 1390428
(part 2, attempt 2) - Remove more nsXPIDLCString local variables. r=erahm.
...
--HG--
extra : rebase_source : 69d58b0cfb56efc6b03d8e2d7be2ce3c3e6cd843
2017-08-21 20:01:27 +10:00
Simon Lindholm
8b0e1c2942
Bug 1387780 - Optimize string searching in MatchAutoCompleteFunction. r=adw, r=emk
2017-08-20 17:21:00 -04:00
Simon Lindholm
56d59da636
Bug 1387780 - Avoid memory allocations when calling MatchAutoCompleteFunction. r=adw, r=froydnj
2017-08-20 17:19:00 -04:00
Masatoshi Kimura
35399ee9fc
Bug 1392070 - Stop using the StopIteration object in Sqlite.jsm. r=mak
...
MozReview-Commit-ID: BP3RuM5EweE
--HG--
extra : rebase_source : 1e0a6ba438e51a851013356faf84d8eb91ff78b6
2017-08-19 22:10:44 +09:00
Sebastian Hengst
02a34cdd40
merge mozilla-central to mozilla-inbound. r=merge a=merge
2017-08-21 13:43:53 +02:00
Paolo Amadini
ba9c155837
Bug 1391576 - Stop doing main-thread I/O in FileUtils.getFile for the most common case. r=kmag
...
MozReview-Commit-ID: HybmKdeReeX
--HG--
extra : rebase_source : 1f109e213db36797105471236b8389acc28b1478
2017-08-18 11:12:34 +01:00
Cervantes Yu
102fb1453d
Bug 1320134 - Part 4: Remove the debug patches for running out of TLS slots on Windows. r=froydnj
...
Revert revision f760842b14a2, 051b765ca8f2 and 01125b5142e5 since the original
bug that we run out of TLS slots on Windows is no longer showing up after
firefox55. It should have been fixed elsewhere, very likely in the rust part.
MozReview-Commit-ID: 9j5hFSGT3OE
2017-08-21 16:24:29 +08:00
Nicholas Nethercote
4a623e6df4
Bug 1385172 - Replace nsEscapeHTML{,2}() with new nsAppendEscapedHTML() function. r=erahm.
...
The existing functions work with C strings but almost all the call sites use
Mozilla strings.
The replacement function has the following properties.
- It works with Mozilla strings, which makes it much simpler and also improves
the call sites.
- It appends to the destination string because that's what a lot of the call
sites need. For those that don't, we can just append to an empty string.
- It is declared outside the |extern "C"| section because there is no need for
it to be in that section.
Note: there is no 16-bit variant of nsAppendEscapedHTML(). This is because
there are only two places that need 16-bit variants, both rarely executed,
and so converting to and from 8-bit is good enough.
The patch also adds some testing of the new function, renaming
TestEscapeURL.cpp as TestEscape.cpp in the process, because that file is now
testing other kinds of escaping.
--HG--
rename : xpcom/tests/gtest/TestEscapeURL.cpp => xpcom/tests/gtest/TestEscape.cpp
extra : rebase_source : 51145ae2c9b0b4573c7ea0c342dcb246f9f14fb9
2017-08-18 12:00:59 +10:00
Sebastian Hengst
54d8b1efae
merge mozilla-inbound to mozilla-central. r=merge a=merge
...
MozReview-Commit-ID: 1yS8D5e0Ejz
2017-08-20 23:24:15 +02:00
Sebastian Hengst
5455dc84e5
Backed out changeset 7bde9d6e783a (bug 1333126) for permafailing browser-chrome's browser/base/content/test/plugins/browser_pluginCrashReportNonDeterminism.js on OS X 10.10 debug. r=backout
2017-08-20 20:11:57 +02:00
Sebastian Hengst
5c0990d31e
Backed out changeset 5872274ff102 (bug 1333126)
2017-08-20 20:11:01 +02:00
Thomas Wisniewski
99ee6030a0
Bug 1392003
- Support estimatedEndTime in DownloadItem; r=aswan
...
MozReview-Commit-ID: 4Yzj52qI1Mz
--HG--
extra : rebase_source : ccfa669ec432887f3459a13758c42206ccb2d85c
2017-08-19 15:06:46 -04:00
flyingrub
2b87303c87
Bug 1390835 - Fix the sidebar width in about:telemetry r=chutten
...
MozReview-Commit-ID: 1LJWQ2Ntb9u
--HG--
extra : rebase_source : 1ad542a61e3316a0414462b0632ca6ebbce9a661
2017-08-17 16:33:27 +02:00
Dragana Damjanovic
b274c67092
Bug 1390881 - Improve the TFO telemetry. r=mcmanus
2017-08-20 09:45:26 +02:00
Sebastian Hengst
f575346459
Backed out changeset ed1101844eea (bug 1381460) for eslint failure at browser/modules/test/browser/browser_UsageTelemetry_content.js:148: 'getSearchCountsHistogram' is not defined. r=backout
2017-08-21 18:27:57 +02:00
flyingrub
f383997c7c
Bug 1391647 - Fix header title in about:telemetry r=chutten
...
Clicking on a subsection then clicking on a section now change the
title.
MozReview-Commit-ID: AmdO0DTRstr
--HG--
extra : rebase_source : f0d2b53643add4612de9233142e9144d583f70c6
2017-08-21 11:42:04 +02:00
Carl Corcoran
bbf7c0b952
Bug 1333126: adding tests; r=gsvelto
...
MozReview-Commit-ID: BNv54jtWf7k
--HG--
extra : rebase_source : e89ea6927ef3cae3d95f46ee5f69f62d04a12f00
2017-08-06 08:46:50 +02:00
Carl Corcoran
03ac54b366
Bug 1333126: use win64 PE unwind metadata to improve client-side stack walking; r=gsvelto
...
MozReview-Commit-ID: GDARnPSemyu
--HG--
extra : rebase_source : 2b727cd57c5bddbc2959fa096dea102eeff7d41f
2017-08-06 08:45:58 +02:00
Phil Ringnalda
366675feaa
Merge m-c to autoland
...
MozReview-Commit-ID: GCxEZcmHL2w
2017-08-19 15:34:44 -07:00
Phil Ringnalda
9359f5bf39
Merge inbound to m-c, a=merge
...
MozReview-Commit-ID: LCCoXUsCtmv
2017-08-19 15:29:10 -07:00
Sebastian Hengst
5655014d2e
Backed out changeset 9f03844eb810 (bug 1387569)
2017-08-19 20:22:05 +02:00
Sebastian Hengst
e8a5a15718
Backed out changeset 9e1a17f94c93 (bug 1387569)
2017-08-19 20:22:00 +02:00
Phil Ringnalda
b792bad21d
Backed out changeset bb2763b51dad (bug 1332144) for landing with insufficient review
...
MozReview-Commit-ID: 2b699CVS9gk
2017-08-19 09:08:00 -07:00
Kevin Jones
1ee4a161ba
Bug 1332144 - API browser.find r=mikedeboer
...
Provides access to the browser's internal Find APIs. Can search,
get range data and rect data on found results, and highlight results.
MozReview-Commit-ID: 6hbNJuvJO3
2017-08-18 09:56:22 -06:00
Wes Kocher
bb19458d5f
Merge m-c to inbound, a=merge
...
MozReview-Commit-ID: EgYue63nSkv
2017-08-18 16:29:11 -07:00
Wes Kocher
b1fc5e008c
Merge inbound to central, a=merge
...
MozReview-Commit-ID: 4cWGBbMEU2x
2017-08-18 15:53:07 -07:00
Eric Rahm
0938982c90
Bug 1389598 - Part 4: Remove remaining gonk refs. r=froydnj
...
--HG--
extra : rebase_source : 063c7f95dda063eafabfa1921366bd1957b8fe73
2017-08-11 17:45:18 -07:00
Ted Mielczarek
865f3f2c5e
bug 1259832 - replace generated source file names in symbol files. r=chmanchester
...
Now that builds are uploading generated source files to an S3 bucket,
symbolstore.py can alter the FILE lines in symbol files to record the
URLs where those generated source files can be found. We currently record
files from the hg repository as `hg:<repo>:<path>:<revision>`, so here we
record generated files as `s3:<bucket>:<path>:` and expect that Socorro
will map that to the S3 bucket in a sensible way.
This patch does not change source server indexing, which allows Microsoft
debuggers to fetch source files for a build. That will be handled in a
followup.
MozReview-Commit-ID: 1g14smF0fo8
--HG--
extra : rebase_source : a5b42251278e6ecc4d57e374c423738de325f8e5
extra : source : 7781a37a4db0378b06ef3ad377e18be37e63ad83
2017-08-09 14:36:52 -04:00
Sylvestre Ledru
49b77df09a
Bug 1387569 - Also enable -Wno-implicit-fallthrough for gcc in google-breakpad (exists from gcc 7) r=ted
...
MozReview-Commit-ID: HTEL8UJE6wb
--HG--
extra : rebase_source : 3debf712593e771351910fb539bcf610cbc97a62
2017-08-19 21:50:09 +02:00
Sylvestre Ledru
8692c8594b
Bug 1387569 - Also enable -Wno-implicit-fallthrough for gcc in google-breakpad (exists from gcc 7) r=ted
...
MozReview-Commit-ID: HTEL8UJE6wb
--HG--
extra : rebase_source : 7ceb0d2de780188e5f8efbc281bc512436aa1fd8
2017-08-19 19:34:54 +02:00
Andrei Oprea
dafc6cbd15
Bug 1381460 - Add telemetry search event for Activity Stream. r=Dexter data-r=bsmedberg
...
MozReview-Commit-ID: GLbDNLglvDY
--HG--
extra : rebase_source : 2aee316d1b8354f67c7b3236f75f5e4b104f8705
2017-08-05 17:59:49 +02:00
Scott Wu
6b45e4e6cf
Bug 1381421 - (Part 2) Add browser chrome tests for the minimum and maximum dates. r=mconley
...
MozReview-Commit-ID: 7qDfouP1ApV
--HG--
extra : rebase_source : e6dd1f19d005042d11844859fd90558cd3890078
2017-08-21 10:17:19 +08:00
Scott Wu
c42e4b8c55
Bug 1381421 - (Part 1) Handle dates earlier than 0001-01-01 and later than 275760-09-13 correctly. r=mconley
...
MozReview-Commit-ID: Af4ZuYIxRsT
--HG--
extra : rebase_source : 0df0422eabc074e1cd761a834931718b8ca6f733
2017-08-21 10:16:55 +08:00
Sylvestre Ledru
fa779f9261
Bug 1387569 - Also enable -Wno-implicit-fallthrough for gcc in jsoncpp (exists from gcc 7) r=kip
...
MozReview-Commit-ID: BhxZ3acIopN
--HG--
extra : rebase_source : c15e0ef9d549902440b8cb62dd7f11a17d94bc7b
2017-08-04 21:38:16 +02:00
Sylvestre Ledru
b7de964055
Bug 1387569 - Also enable -Wno-implicit-fallthrough for gcc in jsoncpp (exists from gcc 7) r=kip
...
MozReview-Commit-ID: BhxZ3acIopN
--HG--
extra : rebase_source : c15e0ef9d549902440b8cb62dd7f11a17d94bc7b
2017-08-04 21:38:16 +02:00
Phil Ringnalda
1ca83fd296
Backed out 5 changesets (bug 1387569) for Windows static build bustage
...
Backed out changeset eeda521ba0ad (bug 1387569)
Backed out changeset 8d23caf2ccc7 (bug 1387569)
Backed out changeset b5f969313f81 (bug 1387569)
Backed out changeset f642bc883aa5 (bug 1387569)
Backed out changeset 20151eabffea (bug 1387569)
MozReview-Commit-ID: IH0XXePvhiL
2017-08-19 12:20:26 -07:00
Sylvestre Ledru
10dec6fbee
Bug 1387569 - Also enable -Wno-implicit-fallthrough for gcc in google-breakpad (exists from gcc 7) r=ted
...
MozReview-Commit-ID: HTEL8UJE6wb
--HG--
extra : rebase_source : b61d3bf0a07e743e10774b8f06b9a46b42029ab3
2017-08-19 20:38:35 +02:00
Sylvestre Ledru
1d6f922a6e
Bug 1387569 - Also enable -Wno-implicit-fallthrough for gcc in jsoncpp (exists from gcc 7) r=kip
...
MozReview-Commit-ID: BhxZ3acIopN
--HG--
extra : rebase_source : c15e0ef9d549902440b8cb62dd7f11a17d94bc7b
2017-08-04 21:38:16 +02:00