Fixed the naming.... Added some comments.

git-svn-id: svn://10.0.0.236/trunk@51490 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
tbogard%aol.net
1999-10-22 02:29:29 +00:00
parent ee49ae552f
commit 6408004f20

View File

@@ -24,12 +24,18 @@
#include "nsIEnumerator.idl"
/**
* The nsIBrowserEmbedSetup
* The nsIWebBrowserSetup
*/
[scriptable, uuid(F15398A0-8018-11d3-AF70-00A024FFC08C)]
interface nsIBrowserEmbedSetup : nsISupports
interface nsIWebBrowserSetup : nsISupports
{
void ChangeCurrentUser(in wstring newUser);
/*
Changes the Current User for the profile to the one selected. If one
does not exist for the name passed in, one will be created.
@param user - User to change the profile to.
*/
void ChangeCurrentUser(in wstring user);
readonly attribute nsIEnumerator userList;
};