Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1235)

Unified Diff: third_party/WebKit/Source/wtf/typed_arrays/ArrayBufferContents.h

Issue 2768063003: Move files in wtf/ to platform/wtf/ (Part 11). (Closed)
Patch Set: Rebase. Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/wtf/typed_arrays/ArrayBufferContents.h
diff --git a/third_party/WebKit/Source/wtf/typed_arrays/ArrayBufferContents.h b/third_party/WebKit/Source/wtf/typed_arrays/ArrayBufferContents.h
index b574c9bd0612416a984c24388f3f75a51c3c51b9..741a063420d4351d367a1b0cb5acc07d40f66354 100644
--- a/third_party/WebKit/Source/wtf/typed_arrays/ArrayBufferContents.h
+++ b/third_party/WebKit/Source/wtf/typed_arrays/ArrayBufferContents.h
@@ -1,186 +1,9 @@
-/*
- * Copyright (C) 2009 Apple Inc. All rights reserved.
- * Copyright (C) 2013 Google Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions and the following disclaimer in the
- * documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
+// Copyright 2017 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
-#ifndef ArrayBufferContents_h
-#define ArrayBufferContents_h
+#include "platform/wtf/typed_arrays/ArrayBufferContents.h"
-#include "wtf/Allocator.h"
-#include "wtf/Assertions.h"
-#include "wtf/Noncopyable.h"
-#include "wtf/RefPtr.h"
-#include "wtf/ThreadSafeRefCounted.h"
-#include "wtf/WTF.h"
-#include "wtf/WTFExport.h"
-
-namespace WTF {
-
-class WTF_EXPORT ArrayBufferContents {
- WTF_MAKE_NONCOPYABLE(ArrayBufferContents);
- DISALLOW_NEW_EXCEPT_PLACEMENT_NEW();
-
- public:
- using AdjustAmountOfExternalAllocatedMemoryFunction = void (*)(int64_t diff);
- // Types that need to be used when injecting external memory.
- // DataHandle allows specifying a deleter which will be invoked when
- // DataHandle instance goes out of scope. If the data memory is allocated
- // using ArrayBufferContents::allocateMemoryOrNull, it is necessary to
- // specify ArrayBufferContents::freeMemory as the DataDeleter.
- // Most clients would want to use ArrayBufferContents::createData, which
- // allocates memory and specifies the correct deleter.
- using DataDeleter = void (*)(void* data);
- using DataHandle = std::unique_ptr<void, DataDeleter>;
-
- enum InitializationPolicy { ZeroInitialize, DontInitialize };
-
- enum SharingType {
- NotShared,
- Shared,
- };
-
- ArrayBufferContents();
- ArrayBufferContents(unsigned numElements,
- unsigned elementByteSize,
- SharingType isShared,
- InitializationPolicy);
- ArrayBufferContents(DataHandle, unsigned sizeInBytes, SharingType isShared);
-
- ~ArrayBufferContents();
-
- void neuter();
-
- void* data() const {
- DCHECK(!isShared());
- return dataMaybeShared();
- }
- void* dataShared() const {
- DCHECK(isShared());
- return dataMaybeShared();
- }
- void* dataMaybeShared() const {
- return m_holder ? m_holder->data() : nullptr;
- }
- unsigned sizeInBytes() const {
- return m_holder ? m_holder->sizeInBytes() : 0;
- }
- bool isShared() const { return m_holder ? m_holder->isShared() : false; }
-
- void transfer(ArrayBufferContents& other);
- void shareWith(ArrayBufferContents& other);
- void copyTo(ArrayBufferContents& other);
-
- static void* allocateMemoryOrNull(size_t, InitializationPolicy);
- static void freeMemory(void*);
- static DataHandle createDataHandle(size_t, InitializationPolicy);
- static void initialize(
- AdjustAmountOfExternalAllocatedMemoryFunction function) {
- DCHECK(isMainThread());
- DCHECK_EQ(s_adjustAmountOfExternalAllocatedMemoryFunction,
- defaultAdjustAmountOfExternalAllocatedMemoryFunction);
- s_adjustAmountOfExternalAllocatedMemoryFunction = function;
- }
-
- void registerExternalAllocationWithCurrentContext() {
- if (m_holder)
- m_holder->registerExternalAllocationWithCurrentContext();
- }
-
- void unregisterExternalAllocationWithCurrentContext() {
- if (m_holder)
- m_holder->unregisterExternalAllocationWithCurrentContext();
- }
-
- private:
- static void* allocateMemoryWithFlags(size_t, InitializationPolicy, int);
-
- static void defaultAdjustAmountOfExternalAllocatedMemoryFunction(
- int64_t diff);
-
- class DataHolder : public ThreadSafeRefCounted<DataHolder> {
- WTF_MAKE_NONCOPYABLE(DataHolder);
-
- public:
- DataHolder();
- ~DataHolder();
-
- void allocateNew(unsigned sizeInBytes,
- SharingType isShared,
- InitializationPolicy);
- void adopt(DataHandle, unsigned sizeInBytes, SharingType isShared);
- void copyMemoryFrom(const DataHolder& source);
-
- const void* data() const { return m_data.get(); }
- void* data() { return m_data.get(); }
- unsigned sizeInBytes() const { return m_sizeInBytes; }
- bool isShared() const { return m_isShared == Shared; }
-
- void registerExternalAllocationWithCurrentContext();
- void unregisterExternalAllocationWithCurrentContext();
-
- private:
- void adjustAmountOfExternalAllocatedMemory(int64_t diff) {
- m_hasRegisteredExternalAllocation = !m_hasRegisteredExternalAllocation;
- DCHECK(!diff || (m_hasRegisteredExternalAllocation == (diff > 0)));
- checkIfAdjustAmountOfExternalAllocatedMemoryIsConsistent();
- s_adjustAmountOfExternalAllocatedMemoryFunction(diff);
- }
-
- void adjustAmountOfExternalAllocatedMemory(unsigned diff) {
- adjustAmountOfExternalAllocatedMemory(static_cast<int64_t>(diff));
- }
-
- void checkIfAdjustAmountOfExternalAllocatedMemoryIsConsistent() {
- DCHECK(s_adjustAmountOfExternalAllocatedMemoryFunction);
-
-#if DCHECK_IS_ON()
- // Make sure that the function actually used is always the same.
- // Shouldn't be updated during its use.
- if (!s_lastUsedAdjustAmountOfExternalAllocatedMemoryFunction) {
- s_lastUsedAdjustAmountOfExternalAllocatedMemoryFunction =
- s_adjustAmountOfExternalAllocatedMemoryFunction;
- }
- DCHECK_EQ(s_adjustAmountOfExternalAllocatedMemoryFunction,
- s_lastUsedAdjustAmountOfExternalAllocatedMemoryFunction);
-#endif
- }
-
- DataHandle m_data;
- unsigned m_sizeInBytes;
- SharingType m_isShared;
- bool m_hasRegisteredExternalAllocation;
- };
-
- RefPtr<DataHolder> m_holder;
- static AdjustAmountOfExternalAllocatedMemoryFunction
- s_adjustAmountOfExternalAllocatedMemoryFunction;
-#if DCHECK_IS_ON()
- static AdjustAmountOfExternalAllocatedMemoryFunction
- s_lastUsedAdjustAmountOfExternalAllocatedMemoryFunction;
-#endif
-};
-
-} // namespace WTF
-
-#endif // ArrayBufferContents_h
+// The contents of this header was moved to platform/wtf as part of
+// WTF migration project. See the following post for details:
+// https://groups.google.com/a/chromium.org/d/msg/blink-dev/tLdAZCTlcAA/bYXVT8gYCAAJ

Powered by Google App Engine
This is Rietveld 408576698