Revision b7280e22d5ed8dd1aa4abdfd86d145762491dfa4 authored by Jean-Yves Avenard on 03 February 2016, 07:07:44 UTC, committed by Jean-Yves Avenard on 03 February 2016, 07:07:44 UTC
This is a partial reversal of bug 1230338. We can't distinguish frames that are never composited because the media element is hidden from the frames genuinely dropped due to machine slowness. So until we can distinguish them, let's not report them as dropped.

MozReview-Commit-ID: ERV8Luaxp3F

--HG--
extra : source : 0f3d064ce06dcc894ff11944681eae6c59405a51
extra : intermediate-source : 99270715327e5ffe1c5ea2e19951b95f7006813e
1 parent c16cfdf
Raw File
xpcom-config.h.in
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

/* Global defines needed by xpcom clients */

#ifndef _XPCOM_CONFIG_H_
#define _XPCOM_CONFIG_H_

/* Define this to throw() if the compiler complains about 
 * constructors returning NULL
 */
#undef CPP_THROW_NEW

/* Define if the c++ compiler can resolve ambiguity with |using| */
#undef HAVE_CPP_AMBIGUITY_RESOLVING_USING

/* Define if a dyanmic_cast to void* gives the most derived object */
#undef HAVE_CPP_DYNAMIC_CAST_TO_VOID_PTR

/* Define to a string describing the XPCOM ABI in use */
#undef TARGET_XPCOM_ABI

#endif /* _XPCOM_CONFIG_H_ */
back to top