mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1235261 - Part 6: Rename AutoInfallibleTArray to AutoTArray. r=froydnj
This commit is contained in:
parent
f3bb8b608c
commit
fa7e1ad144
@ -102,7 +102,7 @@ GetAllBluetoothActors(InfallibleTArray<BluetoothParent*>& aActors)
|
||||
contentIndex++) {
|
||||
MOZ_ASSERT(contentActors[contentIndex]);
|
||||
|
||||
AutoInfallibleTArray<PBluetoothParent*, 5> bluetoothActors;
|
||||
AutoTArray<PBluetoothParent*, 5> bluetoothActors;
|
||||
contentActors[contentIndex]->ManagedPBluetoothParent(bluetoothActors);
|
||||
|
||||
for (uint32_t bluetoothIndex = 0;
|
||||
@ -490,7 +490,7 @@ BluetoothService::SetEnabled(bool aEnabled)
|
||||
{
|
||||
MOZ_ASSERT(NS_IsMainThread());
|
||||
|
||||
AutoInfallibleTArray<BluetoothParent*, 10> childActors;
|
||||
AutoTArray<BluetoothParent*, 10> childActors;
|
||||
GetAllBluetoothActors(childActors);
|
||||
|
||||
for (uint32_t index = 0; index < childActors.Length(); index++) {
|
||||
@ -574,7 +574,7 @@ BluetoothService::HandleShutdown()
|
||||
|
||||
Cleanup();
|
||||
|
||||
AutoInfallibleTArray<BluetoothParent*, 10> childActors;
|
||||
AutoTArray<BluetoothParent*, 10> childActors;
|
||||
GetAllBluetoothActors(childActors);
|
||||
|
||||
if (!childActors.IsEmpty()) {
|
||||
|
@ -1496,9 +1496,9 @@ bool
|
||||
TabParent::RecvRequestNativeKeyBindings(const WidgetKeyboardEvent& aEvent,
|
||||
MaybeNativeKeyBinding* aBindings)
|
||||
{
|
||||
AutoInfallibleTArray<mozilla::CommandInt, 4> singleLine;
|
||||
AutoInfallibleTArray<mozilla::CommandInt, 4> multiLine;
|
||||
AutoInfallibleTArray<mozilla::CommandInt, 4> richText;
|
||||
AutoTArray<mozilla::CommandInt, 4> singleLine;
|
||||
AutoTArray<mozilla::CommandInt, 4> multiLine;
|
||||
AutoTArray<mozilla::CommandInt, 4> richText;
|
||||
|
||||
*aBindings = mozilla::void_t();
|
||||
|
||||
@ -1710,9 +1710,9 @@ bool TabParent::SendRealKeyEvent(WidgetKeyboardEvent& event)
|
||||
if (event.mMessage == eKeyPress) {
|
||||
nsCOMPtr<nsIWidget> widget = GetWidget();
|
||||
|
||||
AutoInfallibleTArray<mozilla::CommandInt, 4> singleLine;
|
||||
AutoInfallibleTArray<mozilla::CommandInt, 4> multiLine;
|
||||
AutoInfallibleTArray<mozilla::CommandInt, 4> richText;
|
||||
AutoTArray<mozilla::CommandInt, 4> singleLine;
|
||||
AutoTArray<mozilla::CommandInt, 4> multiLine;
|
||||
AutoTArray<mozilla::CommandInt, 4> richText;
|
||||
|
||||
widget->ExecuteNativeKeyBinding(nsIWidget::NativeKeyBindingsForSingleLineEditor,
|
||||
event, DoCommandCallback, &singleLine);
|
||||
|
@ -44,7 +44,7 @@ GetAllSpeechSynthActors(InfallibleTArray<mozilla::dom::SpeechSynthesisParent*>&
|
||||
++contentIndex) {
|
||||
MOZ_ASSERT(contentActors[contentIndex]);
|
||||
|
||||
AutoInfallibleTArray<mozilla::dom::PSpeechSynthesisParent*, 5> speechsynthActors;
|
||||
AutoTArray<mozilla::dom::PSpeechSynthesisParent*, 5> speechsynthActors;
|
||||
contentActors[contentIndex]->ManagedPSpeechSynthesisParent(speechsynthActors);
|
||||
|
||||
for (uint32_t speechsynthIndex = 0;
|
||||
|
@ -436,7 +436,7 @@ PluginScriptableObjectChild::ScriptableEnumerate(NPObject* aObject,
|
||||
NS_ASSERTION(actor, "This shouldn't ever be null!");
|
||||
NS_ASSERTION(actor->Type() == Proxy, "Bad type!");
|
||||
|
||||
AutoInfallibleTArray<PluginIdentifier, 10> identifiers;
|
||||
AutoTArray<PluginIdentifier, 10> identifiers;
|
||||
bool success;
|
||||
actor->CallEnumerate(&identifiers, &success);
|
||||
|
||||
|
@ -485,7 +485,7 @@ PluginScriptableObjectParent::ScriptableEnumerate(NPObject* aObject,
|
||||
return false;
|
||||
}
|
||||
|
||||
AutoInfallibleTArray<PluginIdentifier, 10> identifiers;
|
||||
AutoTArray<PluginIdentifier, 10> identifiers;
|
||||
bool success;
|
||||
if (!actor->CallEnumerate(&identifiers, &success)) {
|
||||
NS_WARNING("Failed to send message!");
|
||||
|
@ -150,7 +150,7 @@ private:
|
||||
RefPtr<txAExprResult> mGlobalVarPlaceholderValue;
|
||||
int32_t mRecursionDepth;
|
||||
|
||||
AutoInfallibleTArray<TemplateRule, 10> mTemplateRules;
|
||||
AutoTArray<TemplateRule, 10> mTemplateRules;
|
||||
|
||||
txIEvalContext* mEvalContext;
|
||||
txIEvalContext* mInitialEvalContext;
|
||||
|
@ -26,7 +26,7 @@
|
||||
#include "ClientReadbackLayer.h" // for ClientReadbackLayer
|
||||
#include "nsAString.h"
|
||||
#include "nsIWidgetListener.h"
|
||||
#include "nsTArray.h" // for AutoInfallibleTArray
|
||||
#include "nsTArray.h" // for AutoTArray
|
||||
#include "nsXULAppAPI.h" // for XRE_GetProcessType, etc
|
||||
#include "TiledLayerBuffer.h"
|
||||
#include "mozilla/dom/WindowBinding.h" // for Overfill Callback
|
||||
@ -603,7 +603,7 @@ ClientLayerManager::ForwardTransaction(bool aScheduleComposite)
|
||||
|
||||
// forward this transaction's changeset to our LayerManagerComposite
|
||||
bool sent;
|
||||
AutoInfallibleTArray<EditReply, 10> replies;
|
||||
AutoTArray<EditReply, 10> replies;
|
||||
if (mForwarder->EndTransaction(&replies, mRegionToClear,
|
||||
mLatestTransactionId, aScheduleComposite, mPaintSequenceNumber,
|
||||
mIsRepeatTransaction, transactionStart, &sent)) {
|
||||
|
@ -36,7 +36,7 @@
|
||||
#include "nsAutoPtr.h" // for nsRefPtr
|
||||
#include "nsISupportsImpl.h" // for ImageContainer::AddRef, etc
|
||||
#include "nsTArray.h" // for AutoTArray, nsTArray, etc
|
||||
#include "nsTArrayForwardDeclare.h" // for AutoInfallibleTArray
|
||||
#include "nsTArrayForwardDeclare.h" // for AutoTArray
|
||||
#include "nsThreadUtils.h" // for NS_IsMainThread
|
||||
#include "nsXULAppAPI.h" // for XRE_GetIOMessageLoop
|
||||
#include "mozilla/StaticPtr.h" // for StaticRefPtr
|
||||
@ -654,7 +654,7 @@ ImageBridgeChild::EndTransaction()
|
||||
return;
|
||||
}
|
||||
|
||||
AutoInfallibleTArray<CompositableOperation, 10> cset;
|
||||
AutoTArray<CompositableOperation, 10> cset;
|
||||
cset.SetCapacity(mTxn->mOperations.size());
|
||||
if (!mTxn->mOperations.empty()) {
|
||||
cset.AppendElements(&mTxn->mOperations.front(), mTxn->mOperations.size());
|
||||
@ -664,7 +664,7 @@ ImageBridgeChild::EndTransaction()
|
||||
ShadowLayerForwarder::PlatformSyncBeforeUpdate();
|
||||
}
|
||||
|
||||
AutoInfallibleTArray<EditReply, 10> replies;
|
||||
AutoTArray<EditReply, 10> replies;
|
||||
|
||||
if (mTxn->mSwapRequired) {
|
||||
if (!SendUpdate(cset, mTxn->mDestroyedActors, &replies)) {
|
||||
|
@ -668,7 +668,7 @@ ShadowLayerForwarder::EndTransaction(InfallibleTArray<EditReply>* aReplies,
|
||||
mTxn->AddEdit(OpSetLayerAttributes(nullptr, Shadow(shadow), attrs));
|
||||
}
|
||||
|
||||
AutoInfallibleTArray<Edit, 10> cset;
|
||||
AutoTArray<Edit, 10> cset;
|
||||
size_t nCsets = mTxn->mCset.size() + mTxn->mPaints.size();
|
||||
MOZ_ASSERT(nCsets > 0 || mTxn->RotationChanged(), "should have bailed by now");
|
||||
|
||||
|
@ -100,7 +100,7 @@ private:
|
||||
*/
|
||||
uint64_t GetWindowID() const;
|
||||
|
||||
AutoInfallibleTArray<uint64_t, 3> mID;
|
||||
AutoTArray<uint64_t, 3> mID;
|
||||
nsCOMPtr<nsPIDOMWindowInner> mWindow;
|
||||
bool mIsEmpty;
|
||||
};
|
||||
|
@ -50,7 +50,7 @@ Vibrate(const nsTArray<uint32_t>& pattern, const WindowIdentifier &id)
|
||||
{
|
||||
HAL_LOG("Vibrate: Sending to parent process.");
|
||||
|
||||
AutoInfallibleTArray<uint32_t, 8> p(pattern);
|
||||
AutoTArray<uint32_t, 8> p(pattern);
|
||||
|
||||
WindowIdentifier newID(id);
|
||||
newID.AppendProcessID();
|
||||
|
@ -2885,7 +2885,7 @@ private:
|
||||
JSContext* Pop();
|
||||
bool Push(JSContext* cx);
|
||||
|
||||
AutoInfallibleTArray<XPCJSContextInfo, 16> mStack;
|
||||
AutoTArray<XPCJSContextInfo, 16> mStack;
|
||||
XPCJSRuntime* mRuntime;
|
||||
JSContext* mSafeJSContext;
|
||||
};
|
||||
|
@ -132,7 +132,7 @@ ComputeDescendantISize(const nsHTMLReflowState& aAncestorReflowState,
|
||||
return aAncestorReflowState.ComputedISize();
|
||||
}
|
||||
|
||||
AutoInfallibleTArray<nsIFrame*, 16> frames;
|
||||
AutoTArray<nsIFrame*, 16> frames;
|
||||
for (nsIFrame *f = aDescendantFrame; f != ancestorFrame;
|
||||
f = f->GetParent()->FirstInFlow()) {
|
||||
frames.AppendElement(f);
|
||||
|
@ -629,7 +629,7 @@ nsAnimationManager::BuildAnimations(nsStyleContext* aStyleContext,
|
||||
// the replacement on a per-property basis rather than a per-rule
|
||||
// basis, just like everything else in CSS.
|
||||
|
||||
AutoInfallibleTArray<KeyframeData, 16> sortedKeyframes;
|
||||
AutoTArray<KeyframeData, 16> sortedKeyframes;
|
||||
|
||||
for (uint32_t ruleIdx = 0, ruleEnd = rule->StyleRuleCount();
|
||||
ruleIdx != ruleEnd; ++ruleIdx) {
|
||||
@ -690,7 +690,7 @@ nsAnimationManager::BuildAnimations(nsStyleContext* aStyleContext,
|
||||
// means we need every keyframe with the property in it, except
|
||||
// for those keyframes where a later keyframe with the *same key*
|
||||
// also has the property.
|
||||
AutoInfallibleTArray<uint32_t, 16> keyframesWithProperty;
|
||||
AutoTArray<uint32_t, 16> keyframesWithProperty;
|
||||
float lastKey = 100.0f; // an invalid key
|
||||
for (uint32_t kfIdx = 0, kfEnd = sortedKeyframes.Length();
|
||||
kfIdx != kfEnd; ++kfIdx) {
|
||||
|
@ -15110,7 +15110,7 @@ CSSParserImpl::ParseFunction(nsCSSKeyword aFunction,
|
||||
* functions. The number 16 is coming from the number of arguments that
|
||||
* matrix3d() accepts.
|
||||
*/
|
||||
AutoInfallibleTArray<nsCSSValue, 16> foundValues;
|
||||
AutoTArray<nsCSSValue, 16> foundValues;
|
||||
if (!ParseFunctionInternals(aAllowedTypes, aAllowedTypesAll, aMinElems,
|
||||
aMaxElems, foundValues)) {
|
||||
return false;
|
||||
|
Loading…
Reference in New Issue
Block a user