gecko-dev/dom/canvas/CacheMap.cpp
Emilio Cobos Álvarez fffb25b74f Bug 1465585: Switch from mozilla::Move to std::move. r=froydnj
This was done automatically replacing:

  s/mozilla::Move/std::move/
  s/ Move(/ std::move(/
  s/(Move(/(std::move(/

Removing the 'using mozilla::Move;' lines.

And then with a few manual fixups, see the bug for the split series..

MozReview-Commit-ID: Jxze3adipUh
2018-06-01 10:45:27 +02:00

44 lines
1.2 KiB
C++

/* -*- Mode: C++; tab-width: 13; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/* vim: set ts=13 sts=4 et sw=4 tw=90: */
/* 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 "CacheMap.h"
namespace mozilla {
void
CacheMapInvalidator::InvalidateCaches() const
{
while (mCacheEntries.size()) {
const auto pEntry = *(mCacheEntries.begin());
pEntry->Invalidate();
MOZ_ASSERT(mCacheEntries.find(pEntry) == mCacheEntries.end());
}
}
namespace detail {
CacheMapUntypedEntry::CacheMapUntypedEntry(std::vector<const CacheMapInvalidator*>&& invalidators)
: mInvalidators(std::move(invalidators))
{
for (const auto& cur : mInvalidators) {
// Don't assert that we insert, since there may be dupes in `invalidators`.
// (and it's not worth removing the dupes)
(void)cur->mCacheEntries.insert(this);
}
}
CacheMapUntypedEntry::~CacheMapUntypedEntry()
{
for (const auto& cur : mInvalidators) {
// There might be dupes, so erase might return >1.
(void)cur->mCacheEntries.erase(this);
}
}
} // namespace detail
} // namespace mozilla