Changing casing to fall inline with idl rules.

git-svn-id: svn://10.0.0.236/trunk@58676 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
tbogard%aol.net 2000-01-26 01:07:56 +00:00
parent 4916c30992
commit afefccb316
2 changed files with 9 additions and 11 deletions

View File

@ -48,8 +48,6 @@ public:
NS_IMETHOD GetDOMWindow(nsIDOMWindow** aDOMWindow) = 0;
NS_IMETHOD ConvertWebShellToDOMWindow(nsIWebShell* aShell, nsIDOMWindow** aDOMWindow) = 0;
NS_IMETHOD AddWebShellInfo(const nsString& aID, PRBool aPrimary, nsIWebShell* aChildShell) = 0;
NS_IMETHOD GetContentShellById(const nsString& anID, nsIWebShell** aResult) = 0;
NS_IMETHOD LockUntilChromeLoad() = 0;

View File

@ -45,40 +45,40 @@ interface nsIWindowMediator: nsIRDFDataSource
iterates over all windows. This enumerator returns domWindows.
*/
nsISimpleEnumerator GetEnumerator( in wstring inType );
nsISimpleEnumerator getEnumerator( in wstring inType );
/*
iterates over the XUL windows of type inType in the order that they were created. If
inType is null iterates over all windows. This enumerator returns xulWindows.
*/
nsISimpleEnumerator GetXULWindowEnumerator( in wstring inType);
nsISimpleEnumerator getXULWindowEnumerator( in wstring inType);
/*
Returns the window of type inType ( if null return any window type ) which has the most recent
time stamp
*/
nsIDOMWindow GetMostRecentWindow( in wstring inType );
nsIDOMWindow getMostRecentWindow( in wstring inType );
/*
Get window given an RDF resource.
*/
nsIDOMWindow GetWindowForResource( in wstring inResource );
nsIDOMWindow getWindowForResource( in wstring inResource );
/* */
nsIDOMWindow ConvertISupportsToDOMWindow( in nsISupports inWindow );
nsIDOMWindow convertISupportsToDOMWindow( in nsISupports inWindow );
/* Add the webshellwindow to the list */
[noscript] void RegisterWindow( in nsIWebShellWindow inWindow);
[noscript] void registerWindow( in nsIWebShellWindow inWindow);
/* remove the window from the list */
[noscript] void UnregisterWindow( in nsIWebShellWindow inWindow );
[noscript] void unregisterWindow( in nsIWebShellWindow inWindow );
/* Call when the window gains focus. Used to determine the most recent window */
[noscript] void UpdateWindowTimeStamp( in nsIWebShellWindow inWindow );
[noscript] void updateWindowTimeStamp( in nsIWebShellWindow inWindow );
/* */
[noscript] void UpdateWindowTitle(in nsIWebShellWindow inWindow, in wstring inTitle );
[noscript] void updateWindowTitle(in nsIWebShellWindow inWindow, in wstring inTitle );
};