1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set ts=8 sts=2 et sw=2 tw=80: */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 #ifndef mozilla_dom_StorageActivityService_h
8 #define mozilla_dom_StorageActivityService_h
10 #include "nsDataHashtable.h"
11 #include "nsIStorageActivityService.h"
13 #include "nsWeakReference.h"
23 class StorageActivityService final
: public nsIStorageActivityService
,
25 public nsITimerCallback
,
26 public nsSupportsWeakReference
{
29 NS_DECL_NSISTORAGEACTIVITYSERVICE
31 NS_DECL_NSITIMERCALLBACK
34 static void SendActivity(nsIPrincipal
* aPrincipal
);
37 static void SendActivity(const mozilla::ipc::PrincipalInfo
& aPrincipalInfo
);
39 // Thread-safe but for parent process only!
40 static void SendActivity(const nsACString
& aOrigin
);
42 // Used by XPCOM. Don't use it, use SendActivity() instead.
43 static already_AddRefed
<StorageActivityService
> GetOrCreate();
46 StorageActivityService();
47 ~StorageActivityService();
49 void SendActivityInternal(nsIPrincipal
* aPrincipal
);
51 void SendActivityInternal(const nsACString
& aOrigin
);
53 void SendActivityToParent(nsIPrincipal
* aPrincipal
);
55 void MaybeStartTimer();
57 void MaybeStopTimer();
59 // Activities grouped by origin (+OriginAttributes).
60 nsDataHashtable
<nsCStringHashKey
, PRTime
> mActivities
;
62 nsCOMPtr
<nsITimer
> mTimer
;
66 } // namespace mozilla
68 #endif // mozilla_dom_StorageActivityService_h