2009-08-20 11:56:10 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
|
|
* vim: set ts=4 sw=4 et tw=80:
|
2012-05-21 04:12:37 -07:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2009-08-20 11:56:10 -07:00
|
|
|
|
|
|
|
#ifndef mozilla_IHistory_h_
|
|
|
|
#define mozilla_IHistory_h_
|
|
|
|
|
|
|
|
#include "nsISupports.h"
|
|
|
|
|
|
|
|
class nsIURI;
|
2010-07-13 18:00:41 -07:00
|
|
|
class nsString;
|
2009-08-20 11:56:10 -07:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
|
|
|
|
namespace dom {
|
|
|
|
class Link;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define IHISTORY_IID \
|
2010-07-02 08:50:41 -07:00
|
|
|
{0x6f733924, 0x6321, 0x4384, {0x01, 0xee, 0x8e, 0x7d, 0xfb, 0xde, 0xe7, 0xa8}}
|
2009-08-20 11:56:10 -07:00
|
|
|
|
|
|
|
class IHistory : public nsISupports
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECLARE_STATIC_IID_ACCESSOR(IHISTORY_IID)
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Registers the Link for notifications about the visited-ness of aURI.
|
|
|
|
* Consumers should assume that the URI is unvisited after calling this, and
|
|
|
|
* they will be notified if that state (unvisited) changes by having
|
|
|
|
* SetLinkState called on themselves. This function is guaranteed to run to
|
|
|
|
* completion before aLink is notified. After the node is notified, it will
|
|
|
|
* be unregistered.
|
|
|
|
*
|
|
|
|
* @note SetLinkState must not call RegisterVisitedCallback or
|
|
|
|
* UnregisterVisitedCallback.
|
|
|
|
*
|
|
|
|
* @pre aURI must not be null.
|
2011-04-02 19:14:00 -07:00
|
|
|
* @pre aLink may be null only in the parent (chrome) process.
|
2009-08-20 11:56:10 -07:00
|
|
|
*
|
|
|
|
* @param aURI
|
|
|
|
* The URI to check.
|
|
|
|
* @param aLink
|
|
|
|
* The link to update whenever the history status changes. The
|
|
|
|
* implementation will only hold onto a raw pointer, so if this
|
|
|
|
* object should be destroyed, be sure to call
|
|
|
|
* UnregisterVistedCallback first.
|
|
|
|
*/
|
|
|
|
NS_IMETHOD RegisterVisitedCallback(nsIURI *aURI, dom::Link *aLink) = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Unregisters a previously registered Link object. This must be called
|
|
|
|
* before destroying the registered object.
|
|
|
|
*
|
|
|
|
* @pre aURI must not be null.
|
|
|
|
* @pre aLink must not be null.
|
|
|
|
*
|
|
|
|
* @param aURI
|
|
|
|
* The URI that aLink was registered for.
|
|
|
|
* @param aLink
|
|
|
|
* The link object to unregister for aURI.
|
|
|
|
*/
|
|
|
|
NS_IMETHOD UnregisterVisitedCallback(nsIURI *aURI, dom::Link *aLink) = 0;
|
|
|
|
|
2010-07-13 18:00:33 -07:00
|
|
|
enum VisitFlags {
|
|
|
|
/**
|
|
|
|
* Indicates whether the URI was loaded in a top-level window.
|
|
|
|
*/
|
|
|
|
TOP_LEVEL = 1 << 0,
|
|
|
|
/**
|
|
|
|
* Indicates whether the URI was loaded as part of a permanent redirect.
|
|
|
|
*/
|
|
|
|
REDIRECT_PERMANENT = 1 << 1,
|
|
|
|
/**
|
|
|
|
* Indicates whether the URI was loaded as part of a temporary redirect.
|
|
|
|
*/
|
2012-03-29 06:07:09 -07:00
|
|
|
REDIRECT_TEMPORARY = 1 << 2,
|
|
|
|
/**
|
|
|
|
* Indicates the URI is redirecting (Response code 3xx).
|
|
|
|
*/
|
|
|
|
REDIRECT_SOURCE = 1 << 3,
|
|
|
|
/**
|
|
|
|
* Indicates the URI caused an error that is unlikely fixable by a
|
|
|
|
* retry, like a not found or unfetchable page.
|
|
|
|
*/
|
|
|
|
UNRECOVERABLE_ERROR = 1 << 4
|
2010-07-13 18:00:33 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Adds a history visit for the URI.
|
|
|
|
*
|
|
|
|
* @pre aURI must not be null.
|
|
|
|
*
|
|
|
|
* @param aURI
|
|
|
|
* The URI of the page being visited.
|
|
|
|
* @param aLastVisitedURI
|
|
|
|
* The URI of the last visit in the chain.
|
|
|
|
* @param aFlags
|
|
|
|
* The VisitFlags describing this visit.
|
|
|
|
*/
|
|
|
|
NS_IMETHOD VisitURI(
|
|
|
|
nsIURI *aURI,
|
|
|
|
nsIURI *aLastVisitedURI,
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t aFlags
|
2010-07-13 18:00:33 -07:00
|
|
|
) = 0;
|
2010-07-13 18:00:41 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the title of the URI.
|
|
|
|
*
|
|
|
|
* @pre aURI must not be null.
|
|
|
|
*
|
|
|
|
* @param aURI
|
|
|
|
* The URI to set the title for.
|
|
|
|
* @param aTitle
|
|
|
|
* The title string.
|
|
|
|
*/
|
|
|
|
NS_IMETHOD SetURITitle(nsIURI* aURI, const nsAString& aTitle) = 0;
|
2009-08-20 11:56:10 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
NS_DEFINE_STATIC_IID_ACCESSOR(IHistory, IHISTORY_IID)
|
|
|
|
|
|
|
|
#define NS_DECL_IHISTORY \
|
|
|
|
NS_IMETHOD RegisterVisitedCallback(nsIURI *aURI, \
|
|
|
|
mozilla::dom::Link *aContent); \
|
|
|
|
NS_IMETHOD UnregisterVisitedCallback(nsIURI *aURI, \
|
2010-07-13 18:00:33 -07:00
|
|
|
mozilla::dom::Link *aContent); \
|
|
|
|
NS_IMETHOD VisitURI(nsIURI *aURI, \
|
|
|
|
nsIURI *aLastVisitedURI, \
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t aFlags); \
|
2010-07-13 18:00:41 -07:00
|
|
|
NS_IMETHOD SetURITitle(nsIURI* aURI, const nsAString& aTitle);
|
2009-08-20 11:56:10 -07:00
|
|
|
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_IHistory_h_
|