mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
65e7938e9c
--HG-- extra : rebase_source : dd856c03a45e9d95866fb5a95e568ae3cce67521
26 lines
759 B
Plaintext
26 lines
759 B
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"
|
|
|
|
interface nsIURI;
|
|
|
|
/**
|
|
* nsISiteSpecificUserAgent provides you with site-specific User Agent strings.
|
|
*/
|
|
|
|
[scriptable, uuid(604a64af-9809-4c2f-a91d-f6ebfa21f6cb)]
|
|
interface nsISiteSpecificUserAgent : nsISupports
|
|
{
|
|
/**
|
|
* Get the User Agent string for a given URI.
|
|
*
|
|
* @param aURI is the URI of the page the UA string is used for.
|
|
*
|
|
* @returns the User Agent string for the given URI. If no override applies,
|
|
* the default User Agent string is used.
|
|
*/
|
|
AString getUserAgentForURI(in nsIURI aURI);
|
|
};
|