Fixing bugs 16791, 23339. Added interfaces to check the current profile availability and a check for preg info. r=gayatrib

This commit is contained in:
racham%netscape.com 2000-02-03 11:20:25 +00:00
Родитель ec7c4582cb
Коммит 672ebbefd2
1 изменённых файлов: 3 добавлений и 2 удалений

Просмотреть файл

@ -81,7 +81,7 @@ interface nsIProfile : nsISupports {
void ProcessPRegCookie(); void ProcessPRegCookie();
string isPregCookieSet(); string isPregCookieSet(in string profileName);
void processPREGInfo(in string data); void processPREGInfo(in string data);
@ -90,7 +90,8 @@ interface nsIProfile : nsISupports {
void migrateAllProfiles(); void migrateAllProfiles();
void cloneProfile(in string profileName); void cloneProfile(in string profileName);
void forgetCurrentProfile(); void forgetCurrentProfile();
void loadNewProfilePrefs(); void loadNewProfilePrefs();
boolean isCurrentProfileAvailable();
attribute boolean automigrate; attribute boolean automigrate;
}; };