layout/xul/grid/nsGridRowGroupLayout.h

Tue, 06 Jan 2015 21:39:09 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Tue, 06 Jan 2015 21:39:09 +0100
branch
TOR_BUG_9701
changeset 8
97036ab72558
permissions
-rw-r--r--

Conditionally force memory storage according to privacy.thirdparty.isolate;
This solves Tor bug #9701, complying with disk avoidance documented in
https://www.torproject.org/projects/torbrowser/design/#disk-avoidance.

michael@0 1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
michael@0 2 /* This Source Code Form is subject to the terms of the Mozilla Public
michael@0 3 * License, v. 2.0. If a copy of the MPL was not distributed with this
michael@0 4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
michael@0 5
michael@0 6 /**
michael@0 7
michael@0 8 Author:
michael@0 9 Eric D Vaughan
michael@0 10
michael@0 11 **/
michael@0 12
michael@0 13 #ifndef nsGridRowGroupLayout_h___
michael@0 14 #define nsGridRowGroupLayout_h___
michael@0 15
michael@0 16 #include "mozilla/Attributes.h"
michael@0 17 #include "nsGridRowLayout.h"
michael@0 18
michael@0 19 /**
michael@0 20 * The nsBoxLayout implementation for nsGridRowGroupFrame.
michael@0 21 */
michael@0 22 class nsGridRowGroupLayout : public nsGridRowLayout
michael@0 23 {
michael@0 24 public:
michael@0 25
michael@0 26 friend already_AddRefed<nsBoxLayout> NS_NewGridRowGroupLayout();
michael@0 27
michael@0 28 virtual nsGridRowGroupLayout* CastToRowGroupLayout() MOZ_OVERRIDE { return this; }
michael@0 29 virtual nsSize GetMinSize(nsIFrame* aBox, nsBoxLayoutState& aBoxLayoutState) MOZ_OVERRIDE;
michael@0 30 virtual nsSize GetPrefSize(nsIFrame* aBox, nsBoxLayoutState& aBoxLayoutState) MOZ_OVERRIDE;
michael@0 31 virtual nsSize GetMaxSize(nsIFrame* aBox, nsBoxLayoutState& aBoxLayoutState) MOZ_OVERRIDE;
michael@0 32 virtual void CountRowsColumns(nsIFrame* aBox, int32_t& aRowCount, int32_t& aComputedColumnCount) MOZ_OVERRIDE;
michael@0 33 virtual void DirtyRows(nsIFrame* aBox, nsBoxLayoutState& aState) MOZ_OVERRIDE;
michael@0 34 virtual int32_t BuildRows(nsIFrame* aBox, nsGridRow* aRows) MOZ_OVERRIDE;
michael@0 35 virtual nsMargin GetTotalMargin(nsIFrame* aBox, bool aIsHorizontal) MOZ_OVERRIDE;
michael@0 36 virtual int32_t GetRowCount() MOZ_OVERRIDE { return mRowCount; }
michael@0 37 virtual Type GetType() MOZ_OVERRIDE { return eRowGroup; }
michael@0 38
michael@0 39 protected:
michael@0 40 nsGridRowGroupLayout();
michael@0 41 virtual ~nsGridRowGroupLayout();
michael@0 42
michael@0 43 virtual void ChildAddedOrRemoved(nsIFrame* aBox, nsBoxLayoutState& aState) MOZ_OVERRIDE;
michael@0 44 static void AddWidth(nsSize& aSize, nscoord aSize2, bool aIsHorizontal);
michael@0 45
michael@0 46 private:
michael@0 47 int32_t mRowCount;
michael@0 48 };
michael@0 49
michael@0 50 #endif
michael@0 51

mercurial