Trying to fix bustage.
git-svn-id: svn://10.0.0.236/trunk@38407 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
parent
ac3c06b6c9
commit
fdc6bd2f69
@ -73,6 +73,8 @@ public:
|
||||
NS_IMETHOD GetContentBounds(nsRect& aResult) = 0;
|
||||
NS_IMETHOD GetWindowBounds(nsRect& aResult) = 0;
|
||||
|
||||
NS_IMETHOD IsIntrinsicallySized(PRBool& aResult) = 0;
|
||||
|
||||
NS_IMETHOD Show() = 0;
|
||||
|
||||
NS_IMETHOD Hide() = 0;
|
||||
|
||||
@ -1634,6 +1634,12 @@ nsBrowserWindow::GetContentWebShell(nsIWebShell **aResult)
|
||||
}
|
||||
|
||||
//----------------------------------------
|
||||
NS_IMETHODIMP
|
||||
nsBrowserWindow::IsIntrinsicallySized(PRBool& aResult)
|
||||
{
|
||||
aResult = PR_FALSE;
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
NS_IMETHODIMP
|
||||
nsBrowserWindow::SetTitle(const PRUnichar* aTitle)
|
||||
|
||||
@ -91,6 +91,7 @@ public:
|
||||
NS_IMETHOD SizeWindowTo(PRInt32 aWidth, PRInt32 aHeight);
|
||||
NS_IMETHOD GetContentBounds(nsRect& aBounds);
|
||||
NS_IMETHOD GetWindowBounds(nsRect& aBounds);
|
||||
NS_IMETHOD IsIntrinsicallySized(PRBool& aResult);
|
||||
NS_IMETHOD Show();
|
||||
NS_IMETHOD Hide();
|
||||
NS_IMETHOD Close();
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user