mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-02-28 05:10:49 +00:00
Trying to fix bustage.
This commit is contained in:
parent
4369cccbf6
commit
ed6cec2dac
@ -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