Commit Graph

219297 Commits

Author SHA1 Message Date
Botond Ballo
ca3c178c12 Bug 1073081 - Fix -Wunused-result, -Wunused-variable, and -Wunused-but-set-variable warnings. r=ehsan
--HG--
extra : source : a1ac7acfcf14207706eca29be3a20c576c8fae06
2014-11-26 18:13:49 -05:00
Botond Ballo
f254d5b431 Bug 1073081 - Fix a -Waddress warning. r=slee
--HG--
extra : source : d88ee36d711edf1df2427097a632f5256ff79234
2014-11-24 19:48:49 -05:00
Botond Ballo
79bcb7c0d7 Bug 1073081 - Fix -Waddress warnings about Nuwa functions. r=khuey
--HG--
extra : source : 8cd5108862aaf2c579a76ac6e9c08eb69fa5f3ff
2014-11-26 19:20:03 -05:00
Botond Ballo
02ff512bc3 Bug 1073081 - Fix -Wattribute warnings by disabling them. r=ehsan,ted
--HG--
extra : source : 8393f458463ff465c0862209a7bef284e5ce6b48
2014-11-24 19:43:19 -05:00
Botond Ballo
05cef42133 Bug 1073081 - Fix -Wattribute warnings by removing MOZ_EXPORT from forward declarations. r=ehsan
--HG--
extra : source : 25145aa73cb75faa067ec96114968bc55bf7bbac
2014-11-24 19:40:59 -05:00
Botond Ballo
bd7b769dea Bug 1073081 - Fix -Wattribute warnings by removing unnecessary forward declarations. r=ehsan
--HG--
extra : source : a53418b5392c529098ca015ea7bce192a73bc5e1
2014-11-24 19:39:00 -05:00
Botond Ballo
16adb2810a Bug 1073081 - Fix -Wsign-compare and -Wsign-conversion warnings. r=ehsan
--HG--
extra : source : 88c58a8cc276a4691ed23fd8b8f2f6c0713b50fd
2014-11-24 19:54:33 -05:00
Botond Ballo
b0a589f86f Bug 1073081 - Fix -Wdelete-non-virtual-dtor warnings by adding virtual destructors. r=ehsan
--HG--
extra : source : 194c715428c3405ec2eb3d041fed36a9515555e5
2014-11-24 19:34:19 -05:00
Botond Ballo
0315765d81 Bug 1073081 - Fix -Wdelete-non-virtual-dtor warnings by marking some classes as MOZ_FINAL. r=ehsan
--HG--
extra : source : 7a909c534cf723b252ea5b0a225a6656399b5b2e
2014-11-24 18:38:23 -05:00
Brian Smith
36a90ed8ee Bug 1084025, Part 3: Clean up some bits, r=keeler, r=emk
--HG--
extra : rebase_source : 7aa1de4e9c391bf3e3cd5df79c62fff4546a8c67
2014-12-12 16:42:41 -08:00
Ehsan Akhgari
09a3807915 Bug 1110956 follow-up: Fix a build bustage on non-unified builds 2014-12-12 22:11:23 -05:00
Ehsan Akhgari
ced5ebbec3 Bug 1110956 follow-up: Use EXPECT macros instead of ASSERT 2014-12-12 21:52:22 -05:00
Bas Schouten
3f38d493f1 Bug 1088414: Use a single synchronization texture for D3D11. r=jrmuizel
This patch adds a cross platform 'sync object' that is used to synchronize the drawing of individual textures. For the D3D11 implementation all textures that are written to will have one pixel copied into the D3D11 sync texture while holding its lock. The compositor will then, before composition acquire and release sync once, this should ensure all drawing on the content side has completed.
2014-12-13 01:50:47 +00:00
Ehsan Akhgari
7fb49d9a87 Bug 1110956 - Port TestStrings.cpp to gtest and enable it; r=froydnj
--HG--
rename : xpcom/tests/TestStrings.cpp => xpcom/glue/tests/gtest/TestStrings.cpp
extra : rebase_source : 07362a75215f15211a6ef9989a555dff5a7b5a23
2014-12-12 19:05:10 -05:00
Ehsan Akhgari
1576e9507a Bug 1101337 - Make the ReplaceSubstring() XPCOM string API linear; r=froydnj
ReplaceSubstring() is an O(n*m) algorithm (n being the length of the
string and m being the number of occurrences of aTarget) because we have
to move the remainder of the string, search it again and potentially
memmove most of it again as we find more matches.  This patch rewrites
that function to make it O(n+m).

Note that we currently don't build TestStrings.cpp, so the test case in
this patch is not run automatically, but the test case has been verified
to pass separately by moving the test function into Gecko and calling it
during startup and stepping through it in the debugger.

--HG--
extra : rebase_source : b020e17c1973330b0dbbd6bf956c073cfdcb775e
2014-12-12 18:57:09 -05:00
Wes Kocher
014909a0f9 Backed out changeset 2cd43e5ae2c1 (bug 1088414) for breaking non-Windows builds on a CLOSED TREE 2014-12-12 18:11:59 -08:00
Wes Kocher
1febf386ce Merge m-c to inbound a=merge 2014-12-12 17:39:12 -08:00
Boris Zbarsky
32370758ce Bug 1110871. Ion-compile JSOP_SYMBOL. r=jandem 2014-12-12 20:52:40 -05:00
Bas Schouten
6948db9c90 Bug 1088414: Use a single synchronization texture for D3D11. r=jrmuizel
This patch adds a cross platform 'sync object' that is used to synchronize the drawing of individual textures. For the D3D11 implementation all textures that are written to will have one pixel copied into the D3D11 sync texture while holding its lock. The compositor will then, before composition acquire and release sync once, this should ensure all drawing on the content side has completed.
2014-12-13 01:50:47 +00:00
Tooru Fujisawa
6816fe789f Bug 1105608 - Throw SyntaxError for export-from. r=jorendorff 2014-12-13 10:41:41 +09:00
Sotaro Ikeda
0ab5da61c3 Bug 1108728 - Remove dormant related state from MediaDecoder r=cpearce 2014-12-12 17:29:24 -08:00
Wes Kocher
c77c3563d6 Merge fx-team to m-c a=merge 2014-12-12 17:18:42 -08:00
Wes Kocher
9b1ff9a408 Merge b2g-inbound to m-c a=merge 2014-12-12 16:43:37 -08:00
Wes Kocher
8d1fd679eb Backed out changeset 95377313608b (bug 1101337) for linux debug build bustage 2014-12-12 16:34:43 -08:00
Wes Kocher
fee70237b1 Backed out changeset d468b88bdb23 (bug 1110956)
--HG--
rename : xpcom/glue/tests/gtest/TestStrings.cpp => xpcom/tests/TestStrings.cpp
2014-12-12 16:34:21 -08:00
Wes Kocher
47e1ed5fc1 Backed out changeset 71378a872c99 (bug 1110956) 2014-12-12 16:33:57 -08:00
Ehsan Akhgari
a3407ff4aa Bug 1110956 follow-up: Actually re-enable the test that was commented out 2014-12-12 19:10:48 -05:00
Ehsan Akhgari
31dec06c70 Bug 1110956 - Port TestStrings.cpp to gtest and enable it; r=froydnj
--HG--
rename : xpcom/tests/TestStrings.cpp => xpcom/glue/tests/gtest/TestStrings.cpp
2014-12-12 19:05:10 -05:00
Ehsan Akhgari
4e1fe285c4 Bug 1101337 - Make the ReplaceSubstring() XPCOM string API linear; r=froydnj
ReplaceSubstring() is an O(n*m) algorithm (n being the length of the
string and m being the number of occurrences of aTarget) because we have
to move the remainder of the string, search it again and potentially
memmove most of it again as we find more matches.  This patch rewrites
that function to make it O(n+m).

Note that we currently don't build TestStrings.cpp, so the test case in
this patch is not run automatically, but the test case has been verified
to pass separately by moving the test function into Gecko and calling it
during startup and stepping through it in the debugger.
2014-12-12 18:57:09 -05:00
Wes Kocher
4ab42c639a Backed out 3 changesets (bug 1107516) for b2g debug emulator mochitest bustage
Backed out changeset 5fe0df3298aa (bug 1107516)
Backed out changeset ce51e5cd2a85 (bug 1107516)
Backed out changeset c3b2309fdf93 (bug 1107516)
2014-12-12 15:29:28 -08:00
B2G Bumper Bot
2c7dc8615a Bumping manifests a=b2g-bump 2014-12-12 13:56:51 -08:00
B2G Bumper Bot
4b390b0aa0 Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
========

https://hg.mozilla.org/integration/gaia-central/rev/f741dca42f03
Author: Sam Foster <sam@sam-i-am.com>
Desc: Merge pull request #26630 from sfoster/ftu-rtl-nav-bug-1037755

Bug 1037755 dont flip FTU nav buttons in RTL. r=fcampo

========

https://hg.mozilla.org/integration/gaia-central/rev/80f980cfb0b8
Author: Sam Foster <sfoster@mozilla.com>
Desc: Bug 1037755 dont flip nav buttons in RTL. r=fcampo
2014-12-12 13:52:12 -08:00
Dan Mosedale
43901a805a Bug 1111011-loop panel should close on 'Start a Conversation' click, r=MattN 2014-12-12 13:30:20 -08:00
B2G Bumper Bot
9511013179 Bumping manifests a=b2g-bump 2014-12-12 13:23:54 -08:00
B2G Bumper Bot
f1286d218f Bumping manifests a=b2g-bump 2014-12-12 12:34:15 -08:00
B2G Bumper Bot
f5fa6077d8 Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
========

https://hg.mozilla.org/integration/gaia-central/rev/ffc4fd1b37f0
Author: punamdahiya <punamdahiya@yahoo.com>
Desc: Merge pull request #26698 from punamdahiya/Bug1106877

Bug1106877 - [Gallery] - Fix of grey bars and cannot tap in thumbnails for images smaller than thumbnail container r=djf

========

https://hg.mozilla.org/integration/gaia-central/rev/e2624551c3ec
Author: Punam Dahiya <punamdahiya@yahoo.com>
Desc: Bug1106877 - [Gallery] - Fix of grey bars and cannot tap in thumbnails for images smaller than thumbnail container div r=djf
2014-12-12 12:32:38 -08:00
B2G Bumper Bot
9f53422f02 Bumping manifests a=b2g-bump 2014-12-12 12:12:00 -08:00
B2G Bumper Bot
44df24d7bc Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
========

https://hg.mozilla.org/integration/gaia-central/rev/365f8ff80c0b
Author: punamdahiya <punamdahiya@yahoo.com>
Desc: Merge pull request #26581 from punamdahiya/Bug1088413

Bug1088413-[Gallery][RTL]-Icons in the fullscreen and edit toolbar should stay LTR r=djf

========

https://hg.mozilla.org/integration/gaia-central/rev/125b03eca8e1
Author: Punam Dahiya <punamdahiya@yahoo.com>
Desc: Bug1088413-[Gallery][RTL]-Icons in the fullscreen and edit toolbar should stay LTR r=djf
2014-12-12 12:02:20 -08:00
B2G Bumper Bot
368bdd4975 Bumping manifests a=b2g-bump 2014-12-12 11:33:57 -08:00
B2G Bumper Bot
5f7e4522e8 Bumping gaia.json for 4 gaia revision(s) a=gaia-bump
========

https://hg.mozilla.org/integration/gaia-central/rev/6041f05d17a9
Author: Kevin Grandon <kevingrandon@yahoo.com>
Desc: Merge pull request #26703 from KevinGrandon/bug_1109920_remove_ftu_migration

Bug 1109920 - Remove collection migration code from FTU

========

https://hg.mozilla.org/integration/gaia-central/rev/aab1b7ed1124
Author: Kevin Grandon <kevingrandon@yahoo.com>
Desc: Bug 1109920 - Remove collection migration code from FTU r=sfoster

========

https://hg.mozilla.org/integration/gaia-central/rev/9227cfe6c5df
Author: Russ Nicoletti <rnicoletti@mozilla.com>
Desc: Merge pull request #26456 from russnicoletti/bug-1095826

Bug 1095826 - [RTL][Video] Thumbnail images do not appear r=djf

========

https://hg.mozilla.org/integration/gaia-central/rev/a487a1ffdf26
Author: Russ Nicoletti <rnicoletti@mozilla.com>
Desc: Bug 1095826 - [RTL][Video] Thumbnail images do not appear
2014-12-12 11:32:20 -08:00
Brian Smith
ddd90fc492 Bug 1107666: Fix OCSP stapling telemetry (SSL_OCSP_STAPLING), r=keeler
--HG--
extra : rebase_source : 926f091b2a361d7dce30bee918d6659259f1b3e4
2014-12-11 23:22:35 -08:00
Ankit Goyal
8e7e79583f Bug 1110069 - Replace getBrowser() with gBrowser in /browser. r=dao 2014-12-11 21:48:00 -05:00
Trevor Saunders
a7bbac2f87 bug 1110510 - make sure to create and destroy proxies for documents r=surkov 2014-12-11 17:36:59 -05:00
Ehsan Akhgari
20474e5ba7 Bug 649012 - Fail mochitest-plains which use flaky timeouts (setTimeout(x) for x > 0); r=ted
We are white-listing the existing set of tests that use setTimeout
like this.  Hopefully these tests will be investigated and fixed
in the future, so that we can narrow down the white-list.

This check is only turned on for mochitest-plain for now.
2014-12-11 13:34:40 -05:00
Ehsan Akhgari
8e62eb9e34 Backed out 2 changesets (bug 1101337) because of ASAN bustage landed on a CLOSED TREE
Backed out changeset ffef93ec94aa (bug 1101337)
Backed out changeset 2954a37bc2df (bug 1101337)
2014-12-12 13:04:44 -05:00
Ehsan Akhgari
a0c7fa1cfd Bug 1101337 follow-up: Move the Segment class to nsTString_CharT in order to satisfy older gcc's used on b2g, landed on a CLOSED TREE to fix build bustage 2014-12-12 12:43:04 -05:00
Brian Hackett
5d4eca3432 Bug 1107145 - Allow typed objects with the same prototype to have different descriptors, r=nmatsakis. 2014-12-12 10:24:41 -07:00
Christoph Kerschbaumer
f31adfe5af Bug 1087442 - Attach LoadInfo inside each individual ProtocolHandler - docshell/ changes (r=smaug) 2014-12-12 09:09:24 -08:00
Christoph Kerschbaumer
0783aa8189 Bug 1087442 - Attach LoadInfo inside each individual ProtocolHandler - browser/ changes (r=sicking) 2014-12-12 09:08:27 -08:00
Christoph Kerschbaumer
00ff1ea758 Bug 1087442 - Attach LoadInfo inside each individual ProtocolHandler - widget/ changes (r=blassey) 2014-12-12 09:08:14 -08:00