xpcom/ds/nsHashPropertyBag.h

Thu, 22 Jan 2015 13:21:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 22 Jan 2015 13:21:57 +0100
branch
TOR_BUG_9701
changeset 15
b8a032363ba2
permissions
-rw-r--r--

Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6

     1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
     2 /* This Source Code Form is subject to the terms of the Mozilla Public
     3  * License, v. 2.0. If a copy of the MPL was not distributed with this
     4  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
     6 #ifndef nsHashPropertyBag_h___
     7 #define nsHashPropertyBag_h___
     9 #include "nsIVariant.h"
    10 #include "nsIWritablePropertyBag.h"
    11 #include "nsIWritablePropertyBag2.h"
    12 #include "nsInterfaceHashtable.h"
    14 class nsHashPropertyBag : public nsIWritablePropertyBag
    15                                , public nsIWritablePropertyBag2
    16 {
    17 public:
    18     nsHashPropertyBag() { }
    19     virtual ~nsHashPropertyBag() {}
    21     NS_DECL_THREADSAFE_ISUPPORTS
    23     NS_DECL_NSIPROPERTYBAG
    25     NS_DECL_NSIPROPERTYBAG2
    27     NS_DECL_NSIWRITABLEPROPERTYBAG
    29     NS_DECL_NSIWRITABLEPROPERTYBAG2
    31 protected:
    32     // a hash table of string -> nsIVariant
    33     nsInterfaceHashtable<nsStringHashKey, nsIVariant> mPropertyHash;
    34 };
    36 #undef  IMETHOD_VISIBILITY
    37 #define IMETHOD_VISIBILITY NS_VISIBILITY_HIDDEN
    39 // Note: NS_NewHashPropertyBag returns a HPB that
    40 // uses a non-thread-safe internal hash
    41 extern "C" nsresult
    42 NS_NewHashPropertyBag(nsIWritablePropertyBag* *_retval);
    44 #endif /* nsHashPropertyBag_h___ */

mercurial