Adam Lock wrote
> saveCurrentURI() is gone. Call saveURI() instead, passing nsnull for
> the URI. Note this only works for the implementation of this interface
> on the web browser object.
I have just one other thing to note about saveURI() and saveDocument().
File and directory paths are now specified by nsILocalFile * objects
instead of character strings. You can create these objects by calling
NS_NewLocalFile().
See here for an example:
http://lxr.mozilla.org/seamonkey/source/embedding/tests/mfcembed/BrowserView.cpp#663
Adam