mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-05-26 14:30:27 +00:00
2b832c18de
- Bug 1165162 - Rework the nsIScriptSecurityManager principal-minting API to be originAttributes-centric. r=gabor,r=bholley,sr=sicking (269536132) - pointer style and mispatch (38b32b3bc) - more misspatch & pointer style (ff2bc3057) - Bug 1164014 - Fixing defaultShims. r=billm (bcf7f671a) - Bug 1164014 - Workaround for GC bug 1172193. r=gkrizsanits (b25cf4dea) - Bug 1158427 - r=roc (64037cb2c) - Bug 1157994 - Ensure AudioContext operations are started and resolved in the same order. r=roc (757de0f81) - Bug 1127188 - Properly handle AudioContext.close() calls right after the creation of an AudioContext. r=ehsan (88362873f) - Bug 1164011 - interposition for CPOWS. r=billm (24a8134f6) - Bug 1164014 - Shim optimization. r=billm (9a8498684) - Bug 1178581 - Interning does not and should not imply infinite lifetime; r=sfink (91dfc5b77) - Bug 1171053 - Remove JS_BindCallable. r=efaust (2e59b8c62) - Bug 1174372 - Initialize ExecutableAllocator static fields in JS_Init. r=luke (d02620196) - missing uid of 968334 (3c73a17db) - missing uuid of 1152577 (13d58364c) - add missing uuid of 1050500 (16c61b629) - Bug 110567 - Remove nsIDocShell::GetURLSearchParams(), r=smaug (5018a0936) - Bug 1132518, add a flag to nsIFrameTraversal to skip the popup checks, r=mats (8482fd8fd) - Bug 1132518, make document navigation with F6/Shift+F6 work in e10s. This combines the document and tab navigation mechanisms together, r=smaug (2085e999b) - Bug 1160307 - Capture async stack frames on Javascript timeline markers. r=fitzgen, r=smaug, r=Paolo (95c3e6b95)
76 lines
2.6 KiB
C++
76 lines
2.6 KiB
C++
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* 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/. */
|
|
#ifndef NSIFRAMETRAVERSAL_H
|
|
#define NSIFRAMETRAVERSAL_H
|
|
|
|
#include "nsISupports.h"
|
|
#include "nsIFrame.h"
|
|
|
|
#define NS_IFRAMEENUMERATOR_IID \
|
|
{ 0x7c633f5d, 0x91eb, 0x494e, \
|
|
{ 0xa1, 0x40, 0x17, 0x46, 0x17, 0x4c, 0x23, 0xd3 } }
|
|
|
|
class nsIFrameEnumerator : public nsISupports
|
|
{
|
|
public:
|
|
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IFRAMEENUMERATOR_IID)
|
|
|
|
virtual void First() = 0;
|
|
virtual void Next() = 0;
|
|
virtual nsIFrame* CurrentItem() = 0;
|
|
virtual bool IsDone() = 0;
|
|
|
|
virtual void Last() = 0;
|
|
virtual void Prev() = 0;
|
|
};
|
|
|
|
NS_DEFINE_STATIC_IID_ACCESSOR(nsIFrameEnumerator, NS_IFRAMEENUMERATOR_IID)
|
|
|
|
enum nsIteratorType {
|
|
eLeaf,
|
|
ePreOrder,
|
|
ePostOrder
|
|
};
|
|
|
|
// {d33fe76c-207c-4359-a315-8eb1eecf80e5}
|
|
#define NS_IFRAMETRAVERSAL_IID \
|
|
{ 0xd33fe76c, 0x207c, 0x4359, { 0xa3, 0x15, 0x8e, 0xb1, 0xee, 0xcf, 0x80, 0xe5 } }
|
|
|
|
class nsIFrameTraversal : public nsISupports
|
|
{
|
|
public:
|
|
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IFRAMETRAVERSAL_IID)
|
|
|
|
/**
|
|
* Create a frame iterator with the specified properties.
|
|
* @param aEnumerator [out] the created iterator
|
|
* @param aPresContext [in]
|
|
* @param aStart [in] the frame to start iterating from
|
|
* @param aType [in] the type of the iterator: leaf, pre-order, or post-order
|
|
* @param aVisual [in] whether the iterator should traverse frames in visual
|
|
* bidi order
|
|
* @param aLockInScrollView [in] whether to stop iterating when exiting a
|
|
* scroll view
|
|
* @param aFollowOOFs [in] whether the iterator should follow out-of-flows.
|
|
* If true, when reaching a placeholder frame while going down will get
|
|
* the real frame. Going back up will go on past the placeholder,
|
|
* so the placeholders are logically part of the frame tree.
|
|
* @param aSkipPopupChecks [in] if false, then don't iterate into or out of a
|
|
* popup frame. If true, skip any popup related checks.
|
|
*/
|
|
NS_IMETHOD NewFrameTraversal(nsIFrameEnumerator **aEnumerator,
|
|
nsPresContext* aPresContext,
|
|
nsIFrame *aStart,
|
|
int32_t aType,
|
|
bool aVisual,
|
|
bool aLockInScrollView,
|
|
bool aFollowOOFs,
|
|
bool aSkipPopupChecks) = 0;
|
|
};
|
|
|
|
NS_DEFINE_STATIC_IID_ACCESSOR(nsIFrameTraversal, NS_IFRAMETRAVERSAL_IID)
|
|
|
|
#endif //NSIFRAMETRAVERSAL_H
|