mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
0d77648cc1
/home/landry/src/mozilla-central/toolkit/components/places/nsNavHistory.cpp: In member function 'bool nsNavHistory::FindLastVisit(nsIURI*, int64_t*, PRTime*, int64_t*)': /home/landry/src/mozilla-central/toolkit/components/places/nsNavHistory.cpp:619: error: invalid static_cast from type 'PRTime*' to type 'int64_t*' /home/landry/src/mozilla-central/toolkit/components/places/nsNavHistory.cpp: In member function 'bool nsNavHistory::CheckIsRecentEvent(nsDataHashtable<nsCStringHashKey, long long int>*, const nsACString_internal&)': /home/landry/src/mozilla-central/toolkit/components/places/nsNavHistory.cpp:4360: error: invalid static_cast from type 'PRTime*' to type 'int64_t*'
114 lines
3.8 KiB
Plaintext
114 lines
3.8 KiB
Plaintext
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
/* 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/. */
|
|
|
|
/*
|
|
* browser-specific interface to global history
|
|
*/
|
|
|
|
#include "nsISupports.idl"
|
|
#include "nsIGlobalHistory2.idl"
|
|
|
|
[scriptable, uuid(d176f8e8-383f-4109-812d-cce015e2d804)]
|
|
interface nsIBrowserHistory : nsIGlobalHistory2
|
|
{
|
|
/**
|
|
* Removes a page from global history.
|
|
*
|
|
* @note It is preferrable to use this one rather then RemovePages when
|
|
* removing less than 10 pages, since it won't start a full batch
|
|
* operation.
|
|
*/
|
|
void removePage(in nsIURI aURI);
|
|
|
|
/**
|
|
* Removes a list of pages from global history.
|
|
*
|
|
* @param aURIs
|
|
* Array of URIs to be removed.
|
|
* @param aLength
|
|
* Length of the array.
|
|
*
|
|
* @note the removal happens in a batch.
|
|
*/
|
|
void removePages([array, size_is(aLength)] in nsIURI aURIs,
|
|
in unsigned long aLength);
|
|
|
|
/**
|
|
* Removes all global history information about pages for a given host.
|
|
*
|
|
* @param aHost
|
|
* Hostname to be removed.
|
|
* An empty host name means local files and anything else with no
|
|
* hostname. You can also pass in the localized "(local files)"
|
|
* title given to you from a history query to remove all
|
|
* history information from local files.
|
|
* @param aEntireDomain
|
|
* If true, will also delete pages from sub hosts (so if
|
|
* passed in "microsoft.com" will delete "www.microsoft.com",
|
|
* "msdn.microsoft.com", etc.).
|
|
*
|
|
* @note The removal happens in a batch.
|
|
*/
|
|
void removePagesFromHost(in AUTF8String aHost,
|
|
in boolean aEntireDomain);
|
|
|
|
/**
|
|
* Removes all pages for a given timeframe.
|
|
* Limits are included: aBeginTime <= timeframe <= aEndTime
|
|
*
|
|
* @param aBeginTime
|
|
* Microseconds from epoch, representing the initial time.
|
|
* @param aEndTime
|
|
* Microseconds from epoch, representing the final time.
|
|
*
|
|
* @note The removal happens in a batch.
|
|
*/
|
|
void removePagesByTimeframe(in PRTime aBeginTime,
|
|
in PRTime aEndTime);
|
|
|
|
/**
|
|
* Removes all visits in a given timeframe.
|
|
* Limits are included: aBeginTime <= timeframe <= aEndTime.
|
|
* Any pages that becomes unvisited as a result will also be deleted.
|
|
*
|
|
* @param aBeginTime
|
|
* Microseconds from epoch, representing the initial time.
|
|
* @param aEndTime
|
|
* Microseconds from epoch, representing the final time.
|
|
*
|
|
* @note The removal happens in a batch.
|
|
*/
|
|
void removeVisitsByTimeframe(in PRTime aBeginTime,
|
|
in PRTime aEndTime);
|
|
|
|
/**
|
|
* Removes all existing pages from global history.
|
|
* Visits are removed synchronously, but pages are expired asynchronously
|
|
* off the main-thread.
|
|
*
|
|
* @note The removal happens in a batch. Single removals are not notified,
|
|
* instead an onClearHistory notification is sent to
|
|
* nsINavHistoryObserver implementers.
|
|
*/
|
|
void removeAllPages();
|
|
|
|
/**
|
|
* Designates the url as having been explicitly typed in by the user.
|
|
*
|
|
* @param aURI
|
|
* URI of the page to be marked.
|
|
*/
|
|
void markPageAsTyped(in nsIURI aURI);
|
|
|
|
/**
|
|
* Designates the url as coming from a link explicitly followed by
|
|
* the user (for example by clicking on it).
|
|
*
|
|
* @param aURI
|
|
* URI of the page to be marked.
|
|
*/
|
|
void markPageAsFollowedLink(in nsIURI aURI);
|
|
};
|