Bug 1491558 follow-up: Address mats' review comments

This commit is contained in:
Ehsan Akhgari 2018-09-17 02:22:35 -04:00
Родитель 4d270165a9
Коммит 8b5f37d34a
4 изменённых файлов: 0 добавлений и 5 удалений

Просмотреть файл

@ -74,7 +74,6 @@ WebCryptoThreadPool::DispatchInternal(nsIRunnable* aRunnable)
NS_ENSURE_TRUE(EnsureNSSInitializedChromeOrContent(), NS_ERROR_FAILURE);
nsCOMPtr<nsIThreadPool> pool(new nsThreadPool());
NS_ENSURE_TRUE(pool, NS_ERROR_FAILURE);
nsresult rv = pool->SetName(NS_LITERAL_CSTRING("SubtleCrypto"));
NS_ENSURE_SUCCESS(rv, rv);

Просмотреть файл

@ -205,7 +205,6 @@ nsresult
nsStreamTransportService::Init()
{
mPool = new nsThreadPool();
NS_ENSURE_STATE(mPool);
// Configure the pool
mPool->SetName(NS_LITERAL_CSTRING("StreamTrans"));

Просмотреть файл

@ -21,7 +21,6 @@ using namespace mozilla;
TEST(TestEventTargetQI, ThreadPool)
{
nsCOMPtr<nsIThreadPool> thing = new nsThreadPool();
EXPECT_TRUE(thing);
nsCOMPtr<nsISerialEventTarget> serial = do_QueryInterface(thing);
EXPECT_FALSE(serial);

Просмотреть файл

@ -50,7 +50,6 @@ mozilla::Atomic<int> Task::sCount;
TEST(ThreadPool, Main)
{
nsCOMPtr<nsIThreadPool> pool = new nsThreadPool();
EXPECT_TRUE(pool);
for (int i = 0; i < 100; ++i) {
nsCOMPtr<nsIRunnable> task = new Task(i);
@ -66,7 +65,6 @@ TEST(ThreadPool, Main)
TEST(ThreadPool, Parallelism)
{
nsCOMPtr<nsIThreadPool> pool = new nsThreadPool();
EXPECT_TRUE(pool);
// Dispatch and sleep to ensure we have an idle thread
nsCOMPtr<nsIRunnable> r0 = new Runnable("TestRunnable");