зеркало из https://github.com/mozilla/pjs.git
Bug 516728 - Remote link-visited information r=sdwilsh sr=bz
This commit is contained in:
Родитель
0c129f47c0
Коммит
b909158342
|
@ -52,7 +52,7 @@ namespace mozilla {
|
||||||
}
|
}
|
||||||
|
|
||||||
#define IHISTORY_IID \
|
#define IHISTORY_IID \
|
||||||
{0x6f736049, 0x6370, 0x4376, {0xb7, 0x17, 0xfa, 0xfc, 0x0b, 0x4f, 0xd0, 0xf1}}
|
{0x6f733924, 0x6321, 0x4384, {0x01, 0xee, 0x8e, 0x7d, 0xfb, 0xde, 0xe7, 0xa8}}
|
||||||
|
|
||||||
class IHistory : public nsISupports
|
class IHistory : public nsISupports
|
||||||
{
|
{
|
||||||
|
@ -71,7 +71,7 @@ public:
|
||||||
* UnregisterVisitedCallback.
|
* UnregisterVisitedCallback.
|
||||||
*
|
*
|
||||||
* @pre aURI must not be null.
|
* @pre aURI must not be null.
|
||||||
* @pre aLink must not be null.
|
* @pre aLink may be null only in the MOZ_IPC parent process.
|
||||||
*
|
*
|
||||||
* @param aURI
|
* @param aURI
|
||||||
* The URI to check.
|
* The URI to check.
|
||||||
|
|
|
@ -45,8 +45,11 @@
|
||||||
#include "mozilla/ipc/XPCShellEnvironment.h"
|
#include "mozilla/ipc/XPCShellEnvironment.h"
|
||||||
#include "mozilla/jsipc/PContextWrapperChild.h"
|
#include "mozilla/jsipc/PContextWrapperChild.h"
|
||||||
|
|
||||||
|
#include "History.h"
|
||||||
#include "nsXULAppAPI.h"
|
#include "nsXULAppAPI.h"
|
||||||
|
|
||||||
|
#include "nsDocShellCID.h"
|
||||||
|
#include "nsNetUtil.h"
|
||||||
#include "base/message_loop.h"
|
#include "base/message_loop.h"
|
||||||
#include "base/task.h"
|
#include "base/task.h"
|
||||||
|
|
||||||
|
@ -55,6 +58,7 @@
|
||||||
|
|
||||||
using namespace mozilla::ipc;
|
using namespace mozilla::ipc;
|
||||||
using namespace mozilla::net;
|
using namespace mozilla::net;
|
||||||
|
using namespace mozilla::places;
|
||||||
|
|
||||||
namespace mozilla {
|
namespace mozilla {
|
||||||
namespace dom {
|
namespace dom {
|
||||||
|
@ -219,5 +223,13 @@ ContentProcessChild::RecvNotifyRemotePrefObserver(const nsCString& aDomain)
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool
|
||||||
|
ContentProcessChild::RecvNotifyVisited(const IPC::URI& aURI)
|
||||||
|
{
|
||||||
|
nsCOMPtr<nsIURI> newURI = aURI;
|
||||||
|
History::GetSingleton()->NotifyVisited(newURI);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
} // namespace dom
|
} // namespace dom
|
||||||
} // namespace mozilla
|
} // namespace mozilla
|
||||||
|
|
|
@ -149,6 +149,8 @@ public:
|
||||||
|
|
||||||
virtual bool RecvSetOffline(const PRBool& offline);
|
virtual bool RecvSetOffline(const PRBool& offline);
|
||||||
|
|
||||||
|
virtual bool RecvNotifyVisited(const IPC::URI& aURI);
|
||||||
|
|
||||||
nsresult AddRemotePrefObserver(const nsCString &aDomain,
|
nsresult AddRemotePrefObserver(const nsCString &aDomain,
|
||||||
const nsCString &aPrefRoot,
|
const nsCString &aPrefRoot,
|
||||||
nsIObserver *aObserver, PRBool aHoldWeak);
|
nsIObserver *aObserver, PRBool aHoldWeak);
|
||||||
|
|
|
@ -40,6 +40,7 @@
|
||||||
#include "ContentProcessParent.h"
|
#include "ContentProcessParent.h"
|
||||||
|
|
||||||
#include "TabParent.h"
|
#include "TabParent.h"
|
||||||
|
#include "History.h"
|
||||||
#include "mozilla/ipc/TestShellParent.h"
|
#include "mozilla/ipc/TestShellParent.h"
|
||||||
#include "mozilla/net/NeckoParent.h"
|
#include "mozilla/net/NeckoParent.h"
|
||||||
#include "nsIPrefBranch.h"
|
#include "nsIPrefBranch.h"
|
||||||
|
@ -55,6 +56,7 @@
|
||||||
|
|
||||||
using namespace mozilla::ipc;
|
using namespace mozilla::ipc;
|
||||||
using namespace mozilla::net;
|
using namespace mozilla::net;
|
||||||
|
using namespace mozilla::places;
|
||||||
using mozilla::MonitorAutoEnter;
|
using mozilla::MonitorAutoEnter;
|
||||||
|
|
||||||
namespace mozilla {
|
namespace mozilla {
|
||||||
|
@ -398,6 +400,15 @@ ContentProcessParent::RequestRunToCompletion()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
bool
|
||||||
|
ContentProcessParent::RecvStartVisitedQuery(const IPC::URI& aURI)
|
||||||
|
{
|
||||||
|
nsCOMPtr<nsIURI> newURI = aURI;
|
||||||
|
IHistory *history = nsContentUtils::GetHistory();
|
||||||
|
history->RegisterVisitedCallback(newURI, nsnull);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
bool
|
bool
|
||||||
ContentProcessParent::RecvVisitURI(const IPC::URI& uri,
|
ContentProcessParent::RecvVisitURI(const IPC::URI& uri,
|
||||||
const IPC::URI& referrer,
|
const IPC::URI& referrer,
|
||||||
|
|
|
@ -143,6 +143,8 @@ private:
|
||||||
const IPC::URI& referrer,
|
const IPC::URI& referrer,
|
||||||
const PRUint32& flags);
|
const PRUint32& flags);
|
||||||
|
|
||||||
|
virtual bool RecvStartVisitedQuery(const IPC::URI& uri);
|
||||||
|
|
||||||
mozilla::Monitor mMonitor;
|
mozilla::Monitor mMonitor;
|
||||||
|
|
||||||
GeckoChildProcessHost* mSubprocess;
|
GeckoChildProcessHost* mSubprocess;
|
||||||
|
|
|
@ -78,6 +78,7 @@ include $(topsrcdir)/config/rules.mk
|
||||||
|
|
||||||
LOCAL_INCLUDES += \
|
LOCAL_INCLUDES += \
|
||||||
-I$(srcdir)/../../content/base/src \
|
-I$(srcdir)/../../content/base/src \
|
||||||
|
-I$(srcdir)/../../toolkit/components/places/src \
|
||||||
-I$(srcdir)/../../content/events/src \
|
-I$(srcdir)/../../content/events/src \
|
||||||
-I$(srcdir)/../src/geolocation \
|
-I$(srcdir)/../src/geolocation \
|
||||||
-I$(topsrcdir)/chrome/src \
|
-I$(topsrcdir)/chrome/src \
|
||||||
|
|
|
@ -68,12 +68,15 @@ child:
|
||||||
|
|
||||||
async SetOffline(PRBool offline);
|
async SetOffline(PRBool offline);
|
||||||
|
|
||||||
|
async NotifyVisited(URI uri);
|
||||||
|
|
||||||
NotifyRemotePrefObserver(nsCString aDomain);
|
NotifyRemotePrefObserver(nsCString aDomain);
|
||||||
|
|
||||||
parent:
|
parent:
|
||||||
PNecko();
|
PNecko();
|
||||||
|
|
||||||
async VisitURI(URI uri, URI referrer, PRUint32 flags);
|
async VisitURI(URI uri, URI referrer, PRUint32 flags);
|
||||||
|
async StartVisitedQuery(URI uri);
|
||||||
|
|
||||||
// prefs-related messages ...
|
// prefs-related messages ...
|
||||||
sync GetPrefType(nsCString prefName) returns (PRInt32 retValue, nsresult rv);
|
sync GetPrefType(nsCString prefName) returns (PRInt32 retValue, nsresult rv);
|
||||||
|
|
|
@ -39,6 +39,7 @@
|
||||||
|
|
||||||
#ifdef MOZ_IPC
|
#ifdef MOZ_IPC
|
||||||
#include "mozilla/dom/ContentProcessChild.h"
|
#include "mozilla/dom/ContentProcessChild.h"
|
||||||
|
#include "mozilla/dom/ContentProcessParent.h"
|
||||||
#include "nsXULAppAPI.h"
|
#include "nsXULAppAPI.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -160,6 +161,18 @@ public:
|
||||||
{
|
{
|
||||||
NS_PRECONDITION(aURI, "Null URI");
|
NS_PRECONDITION(aURI, "Null URI");
|
||||||
|
|
||||||
|
#ifdef MOZ_IPC
|
||||||
|
// If we are a content process, always remote the request to the
|
||||||
|
// parent process.
|
||||||
|
if (XRE_GetProcessType() == GeckoProcessType_Content) {
|
||||||
|
mozilla::dom::ContentProcessChild * cpc =
|
||||||
|
mozilla::dom::ContentProcessChild::GetSingleton();
|
||||||
|
NS_ASSERTION(cpc, "Content Protocol is NULL!");
|
||||||
|
cpc->SendStartVisitedQuery(IPC::URI(aURI));
|
||||||
|
return NS_OK;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
nsNavHistory* navHist = nsNavHistory::GetHistoryService();
|
nsNavHistory* navHist = nsNavHistory::GetHistoryService();
|
||||||
NS_ENSURE_TRUE(navHist, NS_ERROR_FAILURE);
|
NS_ENSURE_TRUE(navHist, NS_ERROR_FAILURE);
|
||||||
mozIStorageStatement* stmt = navHist->GetStatementById(DB_IS_PAGE_VISITED);
|
mozIStorageStatement* stmt = navHist->GetStatementById(DB_IS_PAGE_VISITED);
|
||||||
|
@ -911,6 +924,15 @@ History::NotifyVisited(nsIURI* aURI)
|
||||||
{
|
{
|
||||||
NS_ASSERTION(aURI, "Ruh-roh! A NULL URI was passed to us!");
|
NS_ASSERTION(aURI, "Ruh-roh! A NULL URI was passed to us!");
|
||||||
|
|
||||||
|
#ifdef MOZ_IPC
|
||||||
|
if (XRE_GetProcessType() == GeckoProcessType_Default) {
|
||||||
|
mozilla::dom::ContentProcessParent* cpp =
|
||||||
|
mozilla::dom::ContentProcessParent::GetSingleton();
|
||||||
|
NS_ASSERTION(cpp, "Content Protocol is NULL!");
|
||||||
|
(void)cpp->SendNotifyVisited(IPC::URI(aURI));
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
// If the hash table has not been initialized, then we have nothing to notify
|
// If the hash table has not been initialized, then we have nothing to notify
|
||||||
// about.
|
// about.
|
||||||
if (!mObservers.IsInitialized()) {
|
if (!mObservers.IsInitialized()) {
|
||||||
|
@ -1082,7 +1104,14 @@ History::RegisterVisitedCallback(nsIURI* aURI,
|
||||||
Link* aLink)
|
Link* aLink)
|
||||||
{
|
{
|
||||||
NS_ASSERTION(aURI, "Must pass a non-null URI!");
|
NS_ASSERTION(aURI, "Must pass a non-null URI!");
|
||||||
NS_ASSERTION(aLink, "Must pass a non-null Link object!");
|
#ifdef MOZ_IPC
|
||||||
|
if (XRE_GetProcessType() == GeckoProcessType_Content) {
|
||||||
|
NS_PRECONDITION(aLink, "Must pass a non-null URI!");
|
||||||
|
}
|
||||||
|
#else
|
||||||
|
NS_PRECONDITION(aLink, "Must pass a non-null URI!");
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
// First, ensure that our hash table is setup.
|
// First, ensure that our hash table is setup.
|
||||||
if (!mObservers.IsInitialized()) {
|
if (!mObservers.IsInitialized()) {
|
||||||
|
@ -1105,7 +1134,7 @@ History::RegisterVisitedCallback(nsIURI* aURI,
|
||||||
// Links wanting to know about this URI. Therefore, we should query the
|
// Links wanting to know about this URI. Therefore, we should query the
|
||||||
// database now.
|
// database now.
|
||||||
nsresult rv = VisitedQuery::Start(aURI);
|
nsresult rv = VisitedQuery::Start(aURI);
|
||||||
if (NS_FAILED(rv)) {
|
if (NS_FAILED(rv) || !aLink) {
|
||||||
// Remove our array from the hashtable so we don't keep it around.
|
// Remove our array from the hashtable so we don't keep it around.
|
||||||
mObservers.RemoveEntry(aURI);
|
mObservers.RemoveEntry(aURI);
|
||||||
return rv;
|
return rv;
|
||||||
|
|
|
@ -50,6 +50,11 @@ EXPORT_LIBRARY = 1
|
||||||
MODULE_NAME = nsPlacesModule
|
MODULE_NAME = nsPlacesModule
|
||||||
IS_COMPONENT = 1
|
IS_COMPONENT = 1
|
||||||
|
|
||||||
|
EXPORTS_NAMESPACES = mozilla/places
|
||||||
|
|
||||||
|
EXPORTS_mozilla/places = \
|
||||||
|
History.h \
|
||||||
|
$(NULL)
|
||||||
|
|
||||||
CPPSRCS = \
|
CPPSRCS = \
|
||||||
nsAnnoProtocolHandler.cpp \
|
nsAnnoProtocolHandler.cpp \
|
||||||
|
|
Загрузка…
Ссылка в новой задаче