1 /* -*- Mode: C++; tab-width: 4; 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 nsNativeModuleLoader_h__
7 #define nsNativeModuleLoader_h__
9 #include "nsISupports.h"
10 #include "mozilla/ModuleLoader.h"
11 #include "nsDataHashtable.h"
12 #include "nsHashKeys.h"
13 #include "mozilla/Module.h"
16 class nsNativeModuleLoader
: public mozilla::ModuleLoader
19 NS_DECL_ISUPPORTS_INHERITED
21 nsNativeModuleLoader() {}
22 ~nsNativeModuleLoader() {}
24 virtual const mozilla::Module
* LoadModule(mozilla::FileLocation
&aFile
) MOZ_OVERRIDE
;
28 void UnloadLibraries();
38 const mozilla::Module
* module
;
42 static PLDHashOperator
43 ReleaserFunc(nsIHashable
* aHashedFile
, NativeLoadData
&aLoadData
, void*);
45 static PLDHashOperator
46 UnloaderFunc(nsIHashable
* aHashedFile
, NativeLoadData
&aLoadData
, void*);
48 nsDataHashtable
<nsHashableHashKey
, NativeLoadData
> mLibraries
;
51 #endif /* nsNativeModuleLoader_h__ */