mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
067ef5e9f7
MozReview-Commit-ID: LTz4slzIkjH --HG-- extra : rebase_source : 852ca996bd042d9c363b79bf47a037f83f3cf804 extra : source : 4585a7b6f3ce8c8dc7b7e043e0fae86f8e5ee392
54 lines
1.7 KiB
Plaintext
54 lines
1.7 KiB
Plaintext
/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
*
|
|
* 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 "nsIInputStream.idl"
|
|
#include "nsISupports.idl"
|
|
#include "nsIObserver.idl"
|
|
#include "nsIObjectOutputStream.idl"
|
|
|
|
%{C++
|
|
#include "mozilla/UniquePtr.h"
|
|
%}
|
|
|
|
[uuid(25957820-90a1-428c-8739-b0845d3cc534)]
|
|
interface nsIStartupCache : nsISupports
|
|
{
|
|
|
|
/** This interface is provided for testing purposes only, basically
|
|
* just to solve link vagaries. See docs in StartupCache.h
|
|
* GetBuffer, PutBuffer, and InvalidateCache act as described
|
|
* in that file. */
|
|
|
|
uint32_t getBuffer(in string aID, out charPtr aBuffer);
|
|
%{C++
|
|
/* A more convenient interface for using from C++. */
|
|
nsresult GetBuffer(const char* id, mozilla::UniquePtr<char[]>* outbuf, uint32_t* length)
|
|
{
|
|
char* buf;
|
|
nsresult rv = GetBuffer(id, &buf, length);
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
outbuf->reset(buf);
|
|
return rv;
|
|
}
|
|
%}
|
|
|
|
void putBuffer(in string aID, in string aBuffer,
|
|
in uint32_t aLength);
|
|
|
|
void invalidateCache();
|
|
|
|
|
|
/** In debug builds, wraps this object output stream with a stream that will
|
|
* detect and prevent the write of a multiply-referenced non-singleton object
|
|
* during serialization. In non-debug, returns an add-ref'd pointer to
|
|
* original stream, unwrapped. */
|
|
nsIObjectOutputStream getDebugObjectOutputStream(in nsIObjectOutputStream aStream);
|
|
|
|
/* Allows clients to simulate the behavior of ObserverService. */
|
|
readonly attribute nsIObserver observer;
|
|
};
|
|
|