author=ashuk
r,a=edburns

Make webclient work with the tip.
This commit is contained in:
edburns%acm.org 2000-09-28 21:37:25 +00:00
Родитель e5c8dfac31
Коммит f54ddf61ad
3 изменённых файлов: 8 добавлений и 15 удалений

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

@ -86,7 +86,7 @@ NS_IMPL_ADDREF(CBrowserContainer)
NS_IMPL_RELEASE(CBrowserContainer)
NS_INTERFACE_MAP_BEGIN(CBrowserContainer)
// NS_INTERFACE_MAP_ENTRY_AMBIGUOUS(nsISupports, nsIWebBrowserChrome)
NS_INTERFACE_MAP_ENTRY_AMBIGUOUS(nsISupports, nsIWebBrowserChrome)
NS_INTERFACE_MAP_ENTRY(nsIInterfaceRequestor)
NS_INTERFACE_MAP_ENTRY(nsIWebBrowserChrome)
NS_INTERFACE_MAP_ENTRY(nsIURIContentListener)
@ -108,17 +108,11 @@ NS_INTERFACE_MAP_END
NS_IMETHODIMP CBrowserContainer::GetInterface(const nsIID & uuid, void * *result)
{
const nsIID &iid = NS_GET_IID(nsIPrompt);
if (memcmp(&uuid, &iid, sizeof(nsIID)) == 0)
{
*result = (nsIPrompt *) this;
AddRef();
return NS_OK;
}
return NS_ERROR_FAILURE;
return QueryInterface(uuid, result);
}
///////////////////////////////////////////////////////////////////////////////
// nsIPrompt
@ -1384,4 +1378,3 @@ nsresult JNICALL CBrowserContainer::takeActionOnNode(nsCOMPtr<nsIDOMNode> curren
// Local functions
//

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

@ -145,6 +145,3 @@ clobber::
rm -f nsSetupRegistry.cpp
rm -f runem.bat
edburns:
echo $(LLIBS)

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

@ -38,9 +38,12 @@
#include "nsISHEntry.h"
#include "nsIURI.h"
#include "nsIDocShellTreeItem.h"
#include "nsIWebNavigation.h"
#include "ns_util.h"
#include "nsEmbedAPI.h" // for NS_TermEmbedding
void * handleEvent (PLEvent * event);
void destroyEvent (PLEvent * event);
@ -135,7 +138,7 @@ void *
wsLoadURLEvent::handleEvent ()
{
if (mWebNavigation && mURL) {
nsresult rv = mWebNavigation->LoadURI(mURL->GetUnicode());
nsresult rv = mWebNavigation->LoadURI(mURL->GetUnicode(), nsIWebNavigation::LOAD_FLAGS_NONE);
}
return nsnull;
} // handleEvent()
@ -743,7 +746,7 @@ wsDeallocateInitContextEvent::handleEvent ()
util_DeallocateShareInitContext(&(mInitContext->shareContext));
// delete mInitContext;
NS_TermEmbedding();
return (void *) NS_OK;
} // handleEvent()