Read-only Git mirror of the Mercurial gecko repositories at https://hg.mozilla.org. How to contribute: https://firefox-source-docs.mozilla.org/contributing/contribution_quickref.html
Go to file
Nathan Froyd b938c57967 Bug 1251714 - use UniquePtr instead of ScopedDeletePtr in media/; r=jesup
UniquePtr is more standard than ScopedDeletePtr; using standard
constructs whenever possible is preferable.

This patch merits a couple explanations:

- Where it made sense, I tried to convert:

    T* foo() {
      UniquePtr<T> x = ...;
      ...
      return x.release();
    }

  into:

    UniquePtr<T> foo()

  with corresponding changes inside |foo|'s body.

- The attentive reader will note that:

    auto x = MakeUnique<T>(...);

  is used sometimes and:

    UniquePtr<T> x(new T(...));

  is used sometimes.  I would prefer to use the former, but was stymied
  in several places due to protected constructors.  (MakeUnique doesn't
  have access to those protected constructors, natch.)
2016-03-02 15:28:27 -05:00
accessible Bug 1251941 - aria::GetRoleMap should take element, r=davidb 2016-03-03 07:45:47 -05:00
addon-sdk Bug 1170258 - Cache UUID module for context menus (rs=Mossop) 2016-03-02 12:56:51 -08:00
b2g Bug 1251875 - Part 1: Remove the dom.serviceWorkers.interception.enabled pref; r=bkelly 2016-03-01 09:16:38 -05:00
browser Bug 1249845 - bootstrap.js code to manage the e10s staged rollout. r=Mossop 2016-03-03 11:35:27 -03:00
build No Bug - Add python/futures to mach search paths to avoid exception when running mach build or mach test. r=gps DONTBUILD 2016-03-01 15:04:28 -08:00
caps Bug 1229222 - tests for bug 1229222. r=sicking 2016-02-29 12:27:00 +01:00
chrome Bug 1244074 - Part 4: Use StyleSheetHandle instead of concrete style sheet class in most places. r=dholbert 2016-02-24 18:01:12 +11:00
config Bug 1252093 - Move AUTOCFG_JS_EXPORTS to moz.build; r=ted 2016-03-01 09:17:29 +01:00
db/sqlite3 Bug 1248472 - Upgrade SQLite to version 3.11.0. r=mak 2016-02-25 19:45:00 -05:00
devtools merge mozilla-inbound to mozilla-central a=merge 2016-03-03 11:54:40 +01:00
docshell Bug 1227861 - Add OriginAttributes getter/setter into nsIDocShell. r=smaug, sicking 2016-02-16 15:04:14 +08:00
dom Bug 1250401 - test comments fixed, r=me 2016-03-03 15:16:41 +01:00
editor Bug 1250010 - Fix nsHTMLEditRules::ReturnInParagraph(). r=ehsan 2016-02-24 13:43:00 +01:00
embedding Bug 1238160 - Set docshell isolation mode. r=smaug 2016-03-02 10:35:56 -06:00
extensions Bug 1238160 - Rename nsILoadContext::GetIsInBrowserElement. r=smaug,mayhemer 2016-03-02 10:35:56 -06:00
gfx Bug 1252630 - Move the asyncPan skip-if for APZ reftests to the manifest level instead of per-test. r=kats 2016-03-01 16:56:41 -05:00
gradle/wrapper
hal Bug 1251179 - Ensure that the lock protecting the CPU sleep functionality is always valid r=dhylands 2016-02-27 14:34:51 +01:00
image Bug 1251403. Determine the correct index of the next frame before getting the next frame. r=edwin 2016-03-02 21:52:36 -06:00
intl
ipc Bug 1252246 - Try to use PTHREAD_PROCESS_SHARED for CrossProcessMutex on more Unices. r=glandium f=kats 2016-02-29 21:34:46 +00:00
js Bug 1252326 - Reorder MacroAssembler flush functions to follow the header order. r=bbouvier 2016-03-03 13:58:49 +00:00
layout Bug 1248806 - Splitting out protocol handlers from nsLayoutModule. r=bholley 2016-03-03 12:05:52 +01:00
media Bug 1251714 - use UniquePtr instead of ScopedDeletePtr in media/; r=jesup 2016-03-02 15:28:27 -05:00
memory Bug 1248416 - add symbols for bad_function_call exception for C++ runtimes. r=nfroyd 2016-02-24 20:00:10 -05:00
mfbt Bug 1252195 - part 1 - implement UniqueFreePtr; r=Waldo 2016-02-29 10:29:13 -05:00
mobile Bug 1227861 - Add OriginAttributes getter/setter into nsIDocShell. r=smaug, sicking 2016-02-16 15:04:14 +08:00
modules Bug 1249542 - Remove the prefs for History API push/pop/replaceState; r=bzbarsky 2016-03-02 18:14:15 -05:00
mozglue Bug 1252112 - Remove obsolete rules to copy prcpucfg.h around; r=ted 2016-03-01 09:17:29 +01:00
netwerk Backed out changeset ac4148f22b2d (bug 1186072) for referrer test failures 2016-03-03 09:23:59 +01:00
nsprpub Bug 1244062, Upgrade Firefox 47 to NSPR 4.12, final version numbers, no code changes, r=me 2016-02-22 16:48:20 +01:00
other-licenses
parser Bug 1232780 - Adjust test exclusions for win7 debug e10s, a=test-only 2016-03-01 10:36:31 -08:00
probes
python Bug 1253076 - Handle the case defines are not present to avoid artifact build bustage when processing symbols files. r=glandium 2016-03-02 16:25:56 -08:00
rdf
release/docker/beet-mover Bug 1252908 - [beetmover] refresh AV database on every run r=rail a=testing DONTBUILD 2016-03-02 16:36:31 -05:00
security Bug 1245053, NSS_3_23_RTM, only version numbers finalized, no code changes, DONTBUILD 2016-03-03 10:53:54 +01:00
services merge mozilla-inbound to mozilla-central a=merge 2016-03-03 11:54:40 +01:00
startupcache Bug 1249389 - part 7 - clean up calls to GetBuffer in TestStartupCache; r=erahm 2016-02-18 14:57:14 -05:00
storage
testing Bug 1252582 - Remove graph server output from talos, only post perfherder_data. r=wlach 2016-03-01 13:58:49 -08:00
toolkit Bug 1249845 - Store the e10s rollout cohort in the telemetry environment. r=gfritzsche 2016-03-03 11:35:11 -03:00
tools Bug 1252294 - Add python/futures to sys.path when building Sphinx docs; r=chmanchester 2016-02-29 16:08:34 -08:00
uriloader merge mozilla-inbound to mozilla-central a=merge 2016-03-03 11:54:40 +01:00
view
webapprt Bug 1227861 - Add OriginAttributes getter/setter into nsIDocShell. r=smaug, sicking 2016-02-16 15:04:14 +08:00
widget Bug 1245442 - Backout cset 9bde73f95ead (part 9 from bug 890156) for breaking the minimize/maximize/close buttons when a window is maximized on a monitor with non-system DPI. r=emk 2016-03-01 12:08:35 +00:00
xpcom Bug 1242343 - p1. ConstructSystem32Path from LoadLibrarySystem32 - r=jimm 2016-03-03 08:40:23 +11:00
xpfe Bug 1252839 - Remove some if stmt after allocation with 'new' - patch 2, r=bz 2016-03-02 18:51:33 +01:00
.clang-format
.clang-format-ignore
.eslintignore Bug 1235869 - Remove web runtime from android. r=myk 2016-02-29 10:31:00 +01:00
.eslintrc
.gdbinit
.gitignore Bug 1252446 - Sync global .gitignore and .hgignore for various missing unwanted files. r=gps DONTBUILD 2016-03-01 15:18:22 +01:00
.hgignore Bug 1252446 - Sync global .gitignore and .hgignore for various missing unwanted files. r=gps DONTBUILD 2016-03-01 15:18:22 +01:00
.hgtags
.lldbinit
.ycm_extra_conf.py
aclocal.m4
Android.mk
AUTHORS
build.gradle Bug 1233882 - Post: Update Android Gradle plugin to 1.5.0. r=me 2016-02-17 19:16:41 -08:00
client.mk Bug 1250294 - Make configure a Python script that invokes the old configure.sh. r=ted 2016-02-25 07:22:33 +09:00
client.py
CLOBBER
configure.in Bug 1250294 - Make configure a Python script that invokes the old configure.sh. r=ted 2016-02-25 07:22:33 +09:00
configure.py Bug 1251210 - In configure.py, take AUTOCONF from mozconfig (mk_add_options) as well. r=ted 2016-02-26 02:49:03 +09:00
GNUmakefile
gradle.properties
gradlew
LEGAL
LICENSE
mach
Makefile.in Bug 1250294 - Make configure a Python script that invokes the old configure.sh. r=ted 2016-02-25 07:22:33 +09:00
moz.build
mozilla-config.h.in
old-configure.in Bug 1245053, NSS_3_23_RTM, only version numbers finalized, no code changes, DONTBUILD 2016-03-03 10:53:54 +01:00
README.txt
settings.gradle
test.mozbuild

An explanation of the Mozilla Source Code Directory Structure and links to
project pages with documentation can be found at:

    https://developer.mozilla.org/en/Mozilla_Source_Code_Directory_Structure

For information on how to build Mozilla from the source code, see:

    http://developer.mozilla.org/en/docs/Build_Documentation

To have your bug fix / feature added to Mozilla, you should create a patch and
submit it to Bugzilla (https://bugzilla.mozilla.org). Instructions are at:

    http://developer.mozilla.org/en/docs/Creating_a_patch
    http://developer.mozilla.org/en/docs/Getting_your_patch_in_the_tree

If you have a question about developing Mozilla, and can't find the solution
on http://developer.mozilla.org, you can try asking your question in a
mozilla.* Usenet group, or on IRC at irc.mozilla.org. [The Mozilla news groups
are accessible on Google Groups, or news.mozilla.org with a NNTP reader.]

You can download nightly development builds from the Mozilla FTP server.
Keep in mind that nightly builds, which are used by Mozilla developers for
testing, may be buggy. Firefox nightlies, for example, can be found at:

    https://archive.mozilla.org/pub/firefox/nightly/latest-mozilla-central/
            - or -
    http://nightly.mozilla.org/