diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /netwerk/protocol/wyciwyg/nsIWyciwygChannel.idl | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
Diffstat (limited to 'netwerk/protocol/wyciwyg/nsIWyciwygChannel.idl')
-rw-r--r-- | netwerk/protocol/wyciwyg/nsIWyciwygChannel.idl | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/netwerk/protocol/wyciwyg/nsIWyciwygChannel.idl b/netwerk/protocol/wyciwyg/nsIWyciwygChannel.idl new file mode 100644 index 000000000..29bcc4d77 --- /dev/null +++ b/netwerk/protocol/wyciwyg/nsIWyciwygChannel.idl @@ -0,0 +1,45 @@ +/* -*- Mode: C++; 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 "nsIChannel.idl" + +/** + * A channel to manage all cache-related interactions for layout + * when it is dealing with dynamic pages created through + * document.write(). This interface provides methods that will + * help layout save dynamic pages in cache for future retrievals. + */ + +[scriptable, uuid (8b8f3341-46da-40f5-a16f-41a91f5d25dd)] +interface nsIWyciwygChannel : nsIChannel +{ + /** + * Append data to the cache entry; opens the cache entry if necessary. + */ + void writeToCacheEntry(in AString aData); + + /** + * Close the cache entry; subsequent writes have undefined behavior. + */ + void closeCacheEntry(in nsresult reason); + + /** + * Set the wyciwyg channels security info + */ + void setSecurityInfo(in nsISupports aSecurityInfo); + + /** + * Store and read a charset and charset source on the wyciwyg channel. These + * are opaque values to the channel; consumers who set them should know what + * they mean. + */ + void setCharsetAndSource(in long aSource, in ACString aCharset); + /** + * The return value is the charset. Throws if either the charset or the + * source cannot be retrieved. This is guaranteed to return a nonzero source + * and a nonempty charset if it does not throw. + */ + ACString getCharsetAndSource(out long aSource); +}; |