mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 08:35:26 +00:00
e368dc9c85
This patch was generated by a script. Here's the source of the script for future reference: function convert() { echo "Converting $1 to $2..." find . ! -wholename "*nsprpub*" \ ! -wholename "*security/nss*" \ ! -wholename "*/.hg*" \ ! -wholename "obj-ff-dbg*" \ ! -name nsXPCOMCID.h \ ! -name prtypes.h \ -type f \ \( -iname "*.cpp" \ -o -iname "*.h" \ -o -iname "*.c" \ -o -iname "*.cc" \ -o -iname "*.idl" \ -o -iname "*.ipdl" \ -o -iname "*.ipdlh" \ -o -iname "*.mm" \) | \ xargs -n 1 sed -i -e "s/\b$1\b/$2/g" } convert PRInt8 int8_t convert PRUint8 uint8_t convert PRInt16 int16_t convert PRUint16 uint16_t convert PRInt32 int32_t convert PRUint32 uint32_t convert PRInt64 int64_t convert PRUint64 uint64_t convert PRIntn int convert PRUintn unsigned convert PRSize size_t convert PROffset32 int32_t convert PROffset64 int64_t convert PRPtrdiff ptrdiff_t convert PRFloat64 double
74 lines
2.4 KiB
Plaintext
74 lines
2.4 KiB
Plaintext
/* 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/. */
|
|
|
|
#include "nsISupports.idl"
|
|
|
|
/**
|
|
* This interface is implemented by nsIUrlClassifierHashCompleter clients.
|
|
*/
|
|
[scriptable, uuid(bbd6c954-7cb4-4447-bc55-8cefd1ceed89)]
|
|
interface nsIUrlClassifierHashCompleterCallback : nsISupports
|
|
{
|
|
/**
|
|
* A complete hash has been found that matches the partial hash.
|
|
* This method may be called 0-n times for a given
|
|
* nsIUrlClassifierCompleter::complete() call.
|
|
*
|
|
* @param hash
|
|
* The 128-bit hash that was discovered.
|
|
* @param table
|
|
* The name of the table that this hash belongs to.
|
|
* @param chunkId
|
|
* The database chunk that this hash belongs to.
|
|
* @param trusted
|
|
* The completion was verified with a MAC and can be cached.
|
|
*/
|
|
void completion(in ACString hash,
|
|
in ACString table,
|
|
in uint32_t chunkId,
|
|
in boolean trusted);
|
|
|
|
/**
|
|
* The completion is complete. This method is called once per
|
|
* nsIUrlClassifierCompleter::complete() call, after all completion()
|
|
* calls are finished.
|
|
*
|
|
* @param status
|
|
* NS_OK if the request completed successfully, or an error code.
|
|
*/
|
|
void completionFinished(in nsresult status);
|
|
};
|
|
|
|
/**
|
|
* Clients updating the url-classifier database have the option of sending
|
|
* partial (32-bit) hashes of URL fragments to be blacklisted. If the
|
|
* url-classifier encounters one of these truncated hashes, it will ask
|
|
* an nsIUrlClassifierCompleter instance to asynchronously provide the
|
|
* complete hash, along with some associated metadata.
|
|
*/
|
|
[scriptable, uuid(ade9b72b-3562-44f5-aba6-e63246be53ae)]
|
|
interface nsIUrlClassifierHashCompleter : nsISupports
|
|
{
|
|
/**
|
|
* Request a completed hash.
|
|
*
|
|
* @param partialHash
|
|
* The 32-bit hash encountered by the url-classifier.
|
|
* @param callback
|
|
* An nsIUrlClassifierCompleterCallback instance.
|
|
*/
|
|
void complete(in ACString partialHash,
|
|
in nsIUrlClassifierHashCompleterCallback callback);
|
|
|
|
/**
|
|
* Set the client and wrapped key for verified updates.
|
|
*/
|
|
void setKeys(in ACString clientKey, in ACString wrappedKey);
|
|
|
|
/**
|
|
* The URL for the gethash request
|
|
*/
|
|
attribute ACString gethashUrl;
|
|
};
|