From 04b0f5156535d260d4914f02609b6ecaeeb186fa Mon Sep 17 00:00:00 2001 From: "buster%netscape.com" Date: Thu, 11 Nov 1999 00:39:16 +0000 Subject: [PATCH] added charset member data git-svn-id: svn://10.0.0.236/trunk@53141 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/docshell/html/nsHTMLDocShell.h | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/mozilla/docshell/html/nsHTMLDocShell.h b/mozilla/docshell/html/nsHTMLDocShell.h index d7e526ba114..4a1e384389b 100644 --- a/mozilla/docshell/html/nsHTMLDocShell.h +++ b/mozilla/docshell/html/nsHTMLDocShell.h @@ -25,6 +25,7 @@ #include "nsIFrame.h" #include "nsIContent.h" +#include "nsIParser.h" // for nsCharSetSource #include "nsIDOMDocument.h" #include "nsCHTMLDocShell.h" @@ -43,6 +44,9 @@ public: //nsIDocShellEdit Overrides NS_IMETHOD SelectAll(); + // nsIDocShellContainer Overrides + NS_IMETHOD AddChild(nsIDocShell *aChild); + static NS_METHOD Create(nsISupports* aOuter, const nsIID& aIID, void** ppv); protected: @@ -56,6 +60,11 @@ protected: PRInt32 mMarginWidth; PRInt32 mMarginHeight; PRBool mIsFrame; + /* character set member data */ + nsString mDefaultCharacterSet; + nsString mHintCharset; + nsCharsetSource mHintCharsetSource; + nsString mForceCharacterSet; }; #endif /* nsHTMLDocShell_h__ */