2014-02-18 09:26:48 -08:00
|
|
|
/* 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/. */
|
|
|
|
|
|
|
|
#ifndef CacheFileUtils__h__
|
|
|
|
#define CacheFileUtils__h__
|
|
|
|
|
|
|
|
#include "nsError.h"
|
2014-04-06 11:44:40 -07:00
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsString.h"
|
2014-02-18 09:26:48 -08:00
|
|
|
|
|
|
|
class nsILoadContextInfo;
|
|
|
|
class nsACString;
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace net {
|
|
|
|
namespace CacheFileUtils {
|
|
|
|
|
2014-04-06 11:44:40 -07:00
|
|
|
already_AddRefed<nsILoadContextInfo>
|
|
|
|
ParseKey(const nsCSubstring &aKey,
|
|
|
|
nsCSubstring *aIdEnhance = nullptr,
|
|
|
|
nsCSubstring *aURISpec = nullptr);
|
2014-02-18 09:26:48 -08:00
|
|
|
|
2014-04-06 11:44:40 -07:00
|
|
|
void
|
|
|
|
AppendKeyPrefix(nsILoadContextInfo *aInfo, nsACString &_retval);
|
|
|
|
|
|
|
|
void
|
|
|
|
AppendTagWithValue(nsACString & aTarget, char const aTag, nsCSubstring const & aValue);
|
2014-02-18 09:26:48 -08:00
|
|
|
|
2014-04-10 03:47:20 -07:00
|
|
|
nsresult
|
|
|
|
KeyMatchesLoadContextInfo(const nsACString &aKey,
|
|
|
|
nsILoadContextInfo *aInfo,
|
|
|
|
bool *_retval);
|
|
|
|
|
2014-02-18 09:26:48 -08:00
|
|
|
} // CacheFileUtils
|
|
|
|
} // net
|
|
|
|
} // mozilla
|
|
|
|
|
|
|
|
#endif
|