2016-04-14 07:01:55 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim:set ts=2 sw=2 sts=2 et cindent: */
|
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
#include "SeekJob.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
|
|
|
|
SeekJob::~SeekJob()
|
|
|
|
{
|
2016-12-19 07:25:14 +03:00
|
|
|
MOZ_DIAGNOSTIC_ASSERT(mTarget.isNothing());
|
2016-04-14 07:01:55 +03:00
|
|
|
MOZ_DIAGNOSTIC_ASSERT(mPromise.IsEmpty());
|
|
|
|
}
|
|
|
|
|
2016-04-18 09:33:52 +03:00
|
|
|
bool SeekJob::Exists() const
|
2016-04-14 07:01:55 +03:00
|
|
|
{
|
2016-12-19 07:25:14 +03:00
|
|
|
MOZ_ASSERT(mTarget.isSome() == !mPromise.IsEmpty());
|
|
|
|
return mTarget.isSome();
|
2016-04-14 07:01:55 +03:00
|
|
|
}
|
|
|
|
|
2016-11-14 11:47:07 +03:00
|
|
|
void SeekJob::Resolve(const char* aCallSite)
|
2016-04-14 07:01:55 +03:00
|
|
|
{
|
2016-11-14 12:00:53 +03:00
|
|
|
mPromise.Resolve(true, aCallSite);
|
2016-12-19 07:25:14 +03:00
|
|
|
mTarget.reset();
|
2016-04-14 07:01:55 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void SeekJob::RejectIfExists(const char* aCallSite)
|
|
|
|
{
|
2016-12-19 07:25:14 +03:00
|
|
|
mTarget.reset();
|
2016-04-14 07:01:55 +03:00
|
|
|
mPromise.RejectIfExists(true, aCallSite);
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace mozilla
|