Bug 1011799: Forgot to qref to pick up Paolo's comments (r=paolo)

This commit is contained in:
Monica Chew 2014-05-28 16:13:37 -07:00
Родитель aabd897512
Коммит 283ef2a595
2 изменённых файлов: 5 добавлений и 3 удалений

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

@ -569,7 +569,8 @@ PendingLookup::AddRedirects(nsIArray* aRedirects)
rv = principal->GetURI(getter_AddRefs(uri));
NS_ENSURE_SUCCESS(rv, rv);
// Add the spec to our list of local lookups.
// Add the spec to our list of local lookups. The most recent redirect is
// the last element.
nsCString spec;
rv = uri->GetSpec(spec);
NS_ENSURE_SUCCESS(rv, rv);

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

@ -44,7 +44,7 @@ interface nsIApplicationReputationService : nsISupports {
* downloaded file. nsIApplicationReputationService.Start() may only be called
* once with a single query.
*/
[scriptable, uuid(2c781cbe-ab0c-4c53-b06e-f0cb56f8a30b)]
[scriptable, uuid(812d7509-a9a3-446e-a66f-3ed8cc91ebd0)]
interface nsIApplicationReputationQuery : nsISupports {
/*
* The nsIURI from which the file was downloaded. This may not be null.
@ -83,7 +83,8 @@ interface nsIApplicationReputationQuery : nsISupports {
readonly attribute nsIArray signatureInfo;
/*
* The nsIArray of nsIPrincipal of redirects that lead to this download.
* The nsIArray of nsIPrincipal of redirects that lead to this download. The
* most recent redirect is the last element.
*/
readonly attribute nsIArray redirects;
};