gecko-dev/dom/workers/ServiceWorkerScriptCache.h
Nikhil Marathe 42de02a529 Bug 931249 - patch 2 - cachename integration. r=nsm
--HG--
extra : rebase_source : 8a5bd6a3ec53ccd83c08e58f7a74f6ae1f0edea7
2015-03-18 09:46:38 -07:00

31 lines
744 B
C++

/* 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 mozilla_dom_workers_ServiceWorkerScriptCache_h
#define mozilla_dom_workers_ServiceWorkerScriptCache_h
#include "nsString.h"
class nsIPrincipal;
namespace mozilla {
namespace dom {
namespace workers {
namespace serviceWorkerScriptCache {
nsresult
PurgeCache(nsIPrincipal* aPrincipal, const nsAString& aCacheName);
nsresult
GenerateCacheName(nsAString& aName);
} // serviceWorkerScriptCache namespace
} // workers namespace
} // dom namespace
} // mozilla namespace
#endif // mozilla_dom_workers_ServiceWorkerScriptCache_h