Bumping manifests a=b2g-bump
[gecko.git] / layout / generic / RubyReflowState.cpp
blob8cade0c415ee72ab2908f05bfdba91bfe9e63ca4
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set ts=2 et sw=2 tw=80: */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 /* states and methods used while laying out a ruby segment */
9 #include "RubyReflowState.h"
11 using namespace mozilla;
13 RubyReflowState::RubyReflowState(
14 WritingMode aLineWM,
15 const nsTArray<nsRubyTextContainerFrame*>& aTextContainers)
16 : mCurrentContainerIndex(kBaseContainerIndex)
18 uint32_t rtcCount = aTextContainers.Length();
19 mTextContainers.SetCapacity(rtcCount);
20 for (uint32_t i = 0; i < rtcCount; i++) {
21 mTextContainers.AppendElement(
22 TextContainerInfo(aLineWM, aTextContainers[i]));