mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-03-04 07:40:42 +00:00

This change renames nsILoadContext::GetIsInBrowserElement to GetIsInIsolatedMozBrowserElement. Other methods that pass these values around also have name changes. Tokens such as "isInBrowserElement" have previously been serialized into cache keys, used as DB column names, stored in app registries, etc. No changes are made to any serialization formats. Only runtime method and variable names are updated. No behavior changes are made in this patch, so some renamed methods may have nonsensical implementations. These are corrected in subsequent patches focused on behavior. MozReview-Commit-ID: CUttXANQjSv
65 lines
2.5 KiB
Plaintext
65 lines
2.5 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"
|
|
|
|
interface nsINetworkInfo;
|
|
|
|
[scriptable, function, uuid(5f821529-1d80-4ab5-a933-4e1b3585b6bc)]
|
|
interface nsINetworkStatsServiceProxyCallback : nsISupports
|
|
{
|
|
/*
|
|
* @param aResult callback result with boolean value
|
|
* @param aMessage message
|
|
*/
|
|
void notify(in boolean aResult, in jsval aMessage);
|
|
};
|
|
|
|
[scriptable, uuid(f4f3e901-e102-499d-9d37-dc9951f52df7)]
|
|
interface nsINetworkStatsServiceProxy : nsISupports
|
|
{
|
|
/*
|
|
* An interface used to record per-app traffic data.
|
|
* @param aAppId app id
|
|
* @param aIsInIsolatedMozBrowser
|
|
* true if the frame is an isolated mozbrowser element. <iframe
|
|
* mozbrowser mozapp> and <xul:browser> are not considered to be
|
|
* mozbrowser elements. <iframe mozbrowser noisolation> does not count
|
|
* as isolated since isolation is disabled. Isolation can only be
|
|
* disabled if the containing document is chrome.
|
|
* @param aNetworkInterface network
|
|
* @param aTimeStamp time stamp
|
|
* @param aRxBytes received data amount
|
|
* @param aTxBytes transmitted data amount
|
|
* @param aIsAccumulative is stats accumulative
|
|
* @param aCallback an optional callback
|
|
*/
|
|
void saveAppStats(in unsigned long aAppId,
|
|
in boolean aIsInIsolatedMozBrowser,
|
|
in nsINetworkInfo aNetworkInfo,
|
|
in unsigned long long aTimeStamp,
|
|
in unsigned long long aRxBytes,
|
|
in unsigned long long aTxBytes,
|
|
in boolean aIsAccumulative,
|
|
[optional] in nsINetworkStatsServiceProxyCallback aCallback);
|
|
|
|
/*
|
|
* An interface used to record per-system service traffic data.
|
|
* @param aServiceType system service type
|
|
* @param aNetworkInterface network
|
|
* @param aTimeStamp time stamp
|
|
* @param aRxBytes received data amount
|
|
* @param aTxBytes transmitted data amount
|
|
* @param aIsAccumulative is stats accumulative
|
|
* @param aCallback an optional callback
|
|
*/
|
|
void saveServiceStats(in string aServiceType,
|
|
in nsINetworkInfo aNetworkInfo,
|
|
in unsigned long long aTimeStamp,
|
|
in unsigned long long aRxBytes,
|
|
in unsigned long long aTxBytes,
|
|
in boolean aIsAccumulative,
|
|
[optional] in nsINetworkStatsServiceProxyCallback aCallback);
|
|
};
|