Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
michael@0 | 1 | /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ |
michael@0 | 2 | /* vim: set ts=2 et sw=2 tw=80: */ |
michael@0 | 3 | /* This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 4 | * License, v. 2.0. If a copy of the MPL was not distributed with this file, |
michael@0 | 5 | * You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 6 | |
michael@0 | 7 | #ifndef nsIFileStorage_h__ |
michael@0 | 8 | #define nsIFileStorage_h__ |
michael@0 | 9 | |
michael@0 | 10 | #include "nsISupports.h" |
michael@0 | 11 | |
michael@0 | 12 | #define NS_FILESTORAGE_IID \ |
michael@0 | 13 | {0x6278f453, 0xd557, 0x4a55, \ |
michael@0 | 14 | { 0x99, 0x3e, 0xf4, 0x69, 0xe2, 0xa5, 0xe1, 0xd0 } } |
michael@0 | 15 | |
michael@0 | 16 | class nsIFileStorage : public nsISupports |
michael@0 | 17 | { |
michael@0 | 18 | public: |
michael@0 | 19 | NS_DECLARE_STATIC_IID_ACCESSOR(NS_FILESTORAGE_IID) |
michael@0 | 20 | |
michael@0 | 21 | NS_IMETHOD_(const nsACString&) |
michael@0 | 22 | Id() = 0; |
michael@0 | 23 | |
michael@0 | 24 | // Whether or not the storage has been invalidated. If it has then no further |
michael@0 | 25 | // operations for this storage will be allowed to run. |
michael@0 | 26 | NS_IMETHOD_(bool) |
michael@0 | 27 | IsInvalidated() = 0; |
michael@0 | 28 | |
michael@0 | 29 | NS_IMETHOD_(bool) |
michael@0 | 30 | IsShuttingDown() = 0; |
michael@0 | 31 | |
michael@0 | 32 | NS_IMETHOD_(void) |
michael@0 | 33 | SetThreadLocals() = 0; |
michael@0 | 34 | |
michael@0 | 35 | NS_IMETHOD_(void) |
michael@0 | 36 | UnsetThreadLocals() = 0; |
michael@0 | 37 | }; |
michael@0 | 38 | |
michael@0 | 39 | NS_DEFINE_STATIC_IID_ACCESSOR(nsIFileStorage, NS_FILESTORAGE_IID) |
michael@0 | 40 | |
michael@0 | 41 | #define NS_DECL_NSIFILESTORAGE \ |
michael@0 | 42 | NS_IMETHOD_(const nsACString&) \ |
michael@0 | 43 | Id() MOZ_OVERRIDE; \ |
michael@0 | 44 | \ |
michael@0 | 45 | NS_IMETHOD_(bool) \ |
michael@0 | 46 | IsInvalidated() MOZ_OVERRIDE; \ |
michael@0 | 47 | \ |
michael@0 | 48 | NS_IMETHOD_(bool) \ |
michael@0 | 49 | IsShuttingDown() MOZ_OVERRIDE; \ |
michael@0 | 50 | \ |
michael@0 | 51 | NS_IMETHOD_(void) \ |
michael@0 | 52 | SetThreadLocals() MOZ_OVERRIDE; \ |
michael@0 | 53 | \ |
michael@0 | 54 | NS_IMETHOD_(void) \ |
michael@0 | 55 | UnsetThreadLocals() MOZ_OVERRIDE; |
michael@0 | 56 | |
michael@0 | 57 | #endif // nsIFileStorage_h__ |