Add support for GetContents and InsertText commands, using nsICommandManger and parameter-based commmands. Chimera uses these commands for services support. Bug 152023.

git-svn-id: svn://10.0.0.236/branches/CHIMERA_M1_0_1_BRANCH@133721 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
sfraser%netscape.com
2002-11-13 02:07:31 +00:00
parent 1349f20b46
commit e5494d49df
17 changed files with 269 additions and 4 deletions

View File

@@ -835,6 +835,20 @@ NS_IMETHODIMP PluginViewerImpl::GetPasteable(PRBool *aPasteable)
return NS_ERROR_NOT_IMPLEMENTED;
}
/* AString getContents (in string mimeType, in boolean selectionOnly); */
NS_IMETHODIMP PluginViewerImpl::GetContents(const char *mimeType, PRBool selectionOnly, nsAString & _retval)
{
NS_ASSERTION(0, "NOT IMPLEMENTED");
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute boolean canGetContents; */
NS_IMETHODIMP PluginViewerImpl::GetCanGetContents(PRBool *aCanGetContents)
{
NS_ASSERTION(0, "NOT IMPLEMENTED");
return NS_ERROR_NOT_IMPLEMENTED;
}
/* ========================================================================================
* nsIWebBrowserPrint
* ======================================================================================== */