mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
883849ee32
This patch was automatically generated using the following script: function convert() { echo "Converting $1 to $2..." find . \ ! -wholename "*/.git*" \ ! -wholename "obj-ff-dbg*" \ -type f \ \( -iname "*.cpp" \ -o -iname "*.h" \ -o -iname "*.c" \ -o -iname "*.cc" \ -o -iname "*.idl" \ -o -iname "*.ipdl" \ -o -iname "*.ipdlh" \ -o -iname "*.mm" \) | \ xargs -n 1 sed -i -e "s/\b$1\b/$2/g" } convert MOZ_OVERRIDE override convert MOZ_FINAL final
70 lines
2.1 KiB
C++
70 lines
2.1 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 nsStylesheetTxns_h__
|
|
#define nsStylesheetTxns_h__
|
|
|
|
#include "EditTxn.h" // for EditTxn, NS_DECL_EDITTXN
|
|
#include "nsAutoPtr.h" // for nsRefPtr
|
|
#include "mozilla/CSSStyleSheet.h" // for mozilla::CSSStyleSheet
|
|
#include "nsCycleCollectionParticipant.h"
|
|
#include "nsID.h" // for REFNSIID
|
|
#include "nsISupportsImpl.h" // for CSSStyleSheet::Release
|
|
#include "nscore.h" // for NS_IMETHOD
|
|
|
|
class nsIEditor;
|
|
|
|
class AddStyleSheetTxn : public EditTxn
|
|
{
|
|
public:
|
|
/** Initialize the transaction.
|
|
* @param aEditor the object providing core editing operations
|
|
* @param aSheet the stylesheet to add
|
|
*/
|
|
NS_IMETHOD Init(nsIEditor* aEditor,
|
|
mozilla::CSSStyleSheet* aSheet);
|
|
|
|
AddStyleSheetTxn();
|
|
|
|
NS_DECL_CYCLE_COLLECTION_CLASS_INHERITED(AddStyleSheetTxn, EditTxn)
|
|
NS_IMETHOD QueryInterface(REFNSIID aIID, void** aInstancePtr) override;
|
|
|
|
NS_DECL_EDITTXN
|
|
|
|
protected:
|
|
|
|
nsIEditor* mEditor; // the editor that created this transaction
|
|
nsRefPtr<mozilla::CSSStyleSheet> mSheet; // the style sheet to add
|
|
|
|
};
|
|
|
|
|
|
class RemoveStyleSheetTxn : public EditTxn
|
|
{
|
|
public:
|
|
/** Initialize the transaction.
|
|
* @param aEditor the object providing core editing operations
|
|
* @param aSheet the stylesheet to remove
|
|
*/
|
|
NS_IMETHOD Init(nsIEditor* aEditor,
|
|
mozilla::CSSStyleSheet* aSheet);
|
|
|
|
RemoveStyleSheetTxn();
|
|
|
|
NS_DECL_CYCLE_COLLECTION_CLASS_INHERITED(RemoveStyleSheetTxn, EditTxn)
|
|
NS_IMETHOD QueryInterface(REFNSIID aIID, void** aInstancePtr) override;
|
|
|
|
NS_DECL_EDITTXN
|
|
|
|
protected:
|
|
|
|
nsIEditor* mEditor; // the editor that created this transaction
|
|
nsRefPtr<mozilla::CSSStyleSheet> mSheet; // the style sheet to remove
|
|
|
|
};
|
|
|
|
|
|
#endif /* nsStylesheetTxns_h__ */
|