xpcom/ds/nsHashPropertyBag.h

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

     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