Commit Graph

263 Commits

Author SHA1 Message Date
Christoph Kerschbaumer
4701bd2e1a Bug 1167053 - Convert NetUtil.newChannel2 callsites to use new API - update newChannel2 (r=sicking,paolo) 2015-05-21 19:52:03 -07:00
Francois Marier
a2b2102b70 Bug 1138721 - Application reputation should check mac file extensions. r=mmc
Specify the download type when doing a remote lookup.
2015-03-31 21:24:00 -04:00
Hiroyuki Ikezoe
c5fc11787e Bug 1139254 - Use MockRegistrar in toolkit/components. r=Unfocused 2015-03-24 19:47:00 -04:00
Francois Marier
fdf0bbed4b Bug 1111741 - Enable SafeBrowsing remote lookups for mac and linux. r=mmc 2015-03-24 20:47:00 -04:00
Hiroyuki Ikezoe
c114e66b3c Bug 1143539 - Remove firefox-appdir in toolkit/components/downloads/test/unit/xpcshell.ini. r=paolo 2015-03-17 03:35:00 -04:00
Anish
fe58834cf9 Bug 958147 - Choose one of run-if or skip-if and get rid of the other.r=jmaher, mwargers 2015-03-03 08:46:37 -05:00
Chris Peterson
2ce00d017c Bug 1133277 - Remove nonstandard let blocks from toolkit/components and modules. r=mak 2015-02-05 22:53:14 -08:00
Magnus Melin
07526b613e Bug 1132337 - fix "ReferenceError: PlacesTestUtils is not defined" in test_history_expiration.js. r=paolo
comm-central: TEST-UNEXPECTED-FAIL | toolkit/components/downloads/test/unit/test_history_expiration.js | xpcshell return code: 0
2015-02-16 19:14:43 +02:00
Magnus Melin
e51d78c17d Bug 1130488 - disable tests broken by bug 1114624 for thunderbird, until thunderbird can drop the legacy dl manager. r=paolo
Perma orange on comm-central:
- TEST-UNEXPECTED-TIMEOUT | toolkit/components/downloads/test/unit/test_cancel_download_files_removed.js
- TEST-UNEXPECTED-TIMEOUT | toolkit/components/downloads/test/unit/test_download_samename.js | Test timed out
- TEST-UNEXPECTED-TIMEOUT | uriloader/exthandler/tests/unit_ipc/test_encoding.js | Test timed out
2015-02-13 21:40:20 +02:00
Tim Taubert
991c603e8e Bug 1129978 - Replace promiseAddVisits() usage with PlacesTestUtils.addVisits() r=mak 2015-02-05 22:36:55 +01:00
Christoph Kerschbaumer
17d6da8b53 Bug 1125991 - Make JS callers of ios.newChannel call ios.newChannel2 in toolkit/components/jsdownloads (r=paolo) 2015-02-02 20:10:34 -08:00
Ganesh Sahukari
89b61a06c1 Bug 1114594 - Remove promptForSaveToFile in favor of promptForSaveToFileAsync. r=paolo 2015-01-27 16:07:20 -05:00
Ryan VanderMeulen
feab374f8c Backed out changeset dd417504346b (bug 1114594) for crashes.
CLOSED TREE
2015-01-27 15:17:39 -05:00
Ganesh Sahukari
fcdc7673f5 Bug 1114594 - Remove promptForSaveToFile in favor of promptForSaveToFileAsync. r=paolo 2015-01-20 10:11:00 +00:00
Carsten "Tomcat" Book
c5e92c4e18 Backed out changeset d34e894a9ea2 (bug 1114594) for xpcshell and m5 test failures 2015-01-26 15:01:16 +01:00
Ganesh Sahukari
9071495fc0 Bug 1114594 - Remove promptForSaveToFile in favor of promptForSaveToFileAsync. r=paolo 2015-01-20 10:11:00 +00:00
Sid Stamm
7327eccdb3 Bug 704320 - Add referrer policy support for nsIWebBrowserPersist and its consumers. (r=jst) 2014-11-18 08:47:14 -05:00
Andrew Halberstadt
11b824f09b Bug 1066735 - Remove root b2g and android specific xpcshell manifests, r=chmanchester 2014-10-07 18:18:28 -04:00
Hiroyuki Ikezoe
8765132052 Bug 1061112 - test_app_rep_windows.js needs some preference variables to be passed on comm-central. r=mmc 2014-09-10 07:49:03 +01:00
Mark Banner
4025dd0a64 Bug 1061112 - test_app_rep.js fails when "browser.safebrowsing.downloads.enabled" is false or not set. r=gcp 2014-09-02 15:32:51 +01:00
Monica Chew
0904d2a5a7 Bug 1057848: Restore remote lookup logic, add 2 flags for hotfixing, always set all prefs (r=gcp) 2014-08-27 15:57:49 -07:00
Monica Chew
638b46968b Bug 1057764: Remove references to appRepUrl completely (r=gcp) 2014-08-24 08:50:28 -07:00
Gian-Carlo Pascutto
30c0722202 Bug 1055670 - Re-enable removed ApplicationReputation tests. r=mmc 2014-08-20 15:39:39 +02:00
Monica Chew
b96f5864e9 Bug 1055670: Disable test that relies on old behavior (r=gcp) 2014-08-19 14:15:43 -07:00
Monica Chew
8774d0ff72 Bug 1021419: Implement per-table update and gethash requests 2014-06-12 10:24:03 -07:00
Jim Blandy
39dc0c6097 Bug 914753: Make Emacs file variable header lines correct, or at least consistent. DONTBUILD r=ehsan
The -*- file variable lines -*- establish per-file settings that Emacs will
pick up. This patch makes the following changes to those lines (and touches
nothing else):

 - Never set the buffer's mode.

   Years ago, Emacs did not have a good JavaScript mode, so it made sense
   to use Java or C++ mode in .js files. However, Emacs has had js-mode for
   years now; it's perfectly serviceable, and is available and enabled by
   default in all major Emacs packagings.

   Selecting a mode in the -*- file variable line -*- is almost always the
   wrong thing to do anyway. It overrides Emacs's default choice, which is
   (now) reasonable; and even worse, it overrides settings the user might
   have made in their '.emacs' file for that file extension. It's only
   useful when there's something specific about that particular file that
   makes a particular mode appropriate.

 - Correctly propagate settings that establish the correct indentation
   level for this file: c-basic-offset and js2-basic-offset should be
   js-indent-level. Whatever value they're given should be preserved;
   different parts of our tree use different indentation styles.

 - We don't use tabs in Mozilla JS code. Always set indent-tabs-mode: nil.
   Remove tab-width: settings, at least in files that don't contain tab
   characters.

 - Remove js2-mode settings that belong in the user's .emacs file, like
   js2-skip-preprocessor-directives.
2014-06-24 22:12:07 -07:00
Monica Chew
6e0d5147a7 Bug 1017140: Strip url params for application reputation lookups (r=paolo) 2014-06-06 16:34:54 -07:00
Monica Chew
43516179b0 Bug 1017228: Any URL on the blocklist should trump allowlisting (r=gcp) 2014-05-28 17:54:53 -07:00
Monica Chew
aeda299594 Bug 1011799: Integrate nsIRedirectChannel redirects into application reputation check 2014-05-28 16:06:21 -07:00
Monica Chew
72974a2052 Bug 1005504: Fix telemetry for application reputation (r=gcp) 2014-05-05 13:32:56 -07:00
Monica Chew
d38f9e9c44 Bug 933432: Enable remote lookups for application on Windows (r=gcp) 2014-04-17 14:01:47 -07:00
Monica Chew
c5215e23b2 Bug 985720: Rename urlclassifier.download_block_table and urlclassifier.download_allow_table (r=gcp) 2014-03-24 10:49:05 -07:00
Wes Kocher
1614e57618 Backed out changeset 3d94ebde9018 (bug 985720) for missing a file from the patch to fix a CLOSED TREE 2014-03-24 18:07:13 -07:00
Monica Chew
29f425d18a Bug 985720: Rename urlclassifier.download_block_table and urlclassifier.download_allow_table (r=gcp) 2014-03-24 14:57:59 -07:00
Wes Kocher
31d19ce39b Merge inbound to m-c 2014-03-18 14:15:03 -07:00
Paolo Amadini
19e9ab1a3b Bug 984788 - Convert legacy uses of promise.js to Promise.jsm. rs=Yoric 2014-03-18 15:16:02 +01:00
Hiroyuki Ikezoe
d4d4210e65 Bug 901198 - Set download_block_table explicitly for testing applications. r=mmc 2014-03-18 10:46:34 +00:00
Monica Chew
7abbbfdc32 Bug 977236 - Use referrer for application reputation checks. r=gcp 2014-03-12 20:31:51 -07:00
Monica Chew
3f016d9b67 Bug 964465: Check certificate whitelist strings before sending remote lookup (r=gcp) 2014-02-19 15:14:02 -08:00
Ted Mielczarek
78e3bfe3c5 Bug 968837 - Move more Mochitests into manifests. r=jmaher 2014-02-06 15:37:30 -05:00
Gregory Szorc
dffb8830ba Bug 969021 - Part 1: Consolidate moz.build data into parent moz.build files; r=ted
Many moz.build files define things that could be defined in parent
moz.build files. Keeping the number of moz.build files low helps with
build times due to less I/O and fewer directories traversed.

This patch eliminates a lot of moz.build files by moving their content
into parent moz.build files.
2014-02-06 13:00:20 -08:00
Gian-Carlo Pascutto
648a6bdcd2 Bug 783047 - Update Application Reputation test for new SB interface. r=mmc 2014-01-16 09:27:59 +01:00
Mike Hommey
7f7e4faac1 Bug 939044 - Remove most definitions of MODULE. r=mshal 2013-11-19 11:47:39 +09:00
Monica Chew
3bdfc6726a Bug 895476: Integrate application reputation with download manager, disable remote lookups for application reputation (r=paolo) 2013-11-11 10:54:09 -08:00
Paolo Amadini
5ef5043a8d Bug 928349 - Remove obsolete tests currently failing on comm-central. r=jcranmer 2013-10-25 15:55:09 +02:00
Paolo Amadini
93ef94dbfb Bug 928349 - Add a build-time setting to use only the JavaScript API for downloads, and enable it in Firefox for Desktop. r=enn 2013-10-23 21:46:47 +02:00
Gregory Szorc
d3405d579f Bug 920223 - Part 3: Mass convert MOCHITEST_BROWSER_FILES to manifests; rs=Ms2ger 2013-09-30 09:52:06 +02:00
Ed Morley
697a1cc250 Backed out changeset 8b02873ee07e (bug 920223) 2013-09-30 12:50:05 +01:00
Gregory Szorc
3bbbcf0fd0 Bug 920223 - Part 3: Mass convert MOCHITEST_BROWSER_FILES to manifests; rs=Ms2ger 2013-09-30 09:52:06 +02:00
Monica Chew
2acefcc514 Bug 842828: Clean up urlclassifier.gethashtables preferences (r=gcp)
* * *
Bug 842828: Mark attributes of nsIApplicationReputationQuery as readonly, remove unused field (r=mossop)
* * *
Bug 842828: Check local list to suppress remote lookups (r=paolo)
2013-09-26 06:51:59 -07:00