зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1382251: Part 2 - Allow constructing nsWindowsDllInterceptor from module name; r=aklotz
Allow constructor to behave like Init().
This commit is contained in:
Родитель
6e41063d30
Коммит
4d440ebfcc
|
@ -1401,10 +1401,15 @@ class WindowsDllInterceptor
|
|||
int mNHooks;
|
||||
|
||||
public:
|
||||
WindowsDllInterceptor()
|
||||
explicit WindowsDllInterceptor(const char* aModuleName = nullptr,
|
||||
int aNumHooks = 0)
|
||||
: mModuleName(nullptr)
|
||||
, mNHooks(0)
|
||||
{}
|
||||
{
|
||||
if (aModuleName) {
|
||||
Init(aModuleName, aNumHooks);
|
||||
}
|
||||
}
|
||||
|
||||
void Init(const char* aModuleName, int aNumHooks = 0)
|
||||
{
|
||||
|
|
Загрузка…
Ссылка в новой задаче