blob: 42d2c5dab4f5810dcf30c0ba6ea95297001d53ee [file] [log] [blame]
// Copyright 2018 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 THIRD_PARTY_BLINK_RENDERER_MODULES_BLUETOOTH_BLUETOOTH_SERVICE_DATA_MAP_H_
#define THIRD_PARTY_BLINK_RENDERER_MODULES_BLUETOOTH_BLUETOOTH_SERVICE_DATA_MAP_H_
#include "third_party/blink/renderer/bindings/core/v8/maplike.h"
#include "third_party/blink/renderer/bindings/modules/v8/string_or_unsigned_long.h"
#include "third_party/blink/renderer/core/typed_arrays/dom_data_view.h"
#include "third_party/blink/renderer/platform/bindings/script_wrappable.h"
#include "third_party/blink/renderer/platform/heap/garbage_collected.h"
namespace blink {
class BluetoothServiceDataMap final
: public ScriptWrappable,
public Maplike<String, Member<DOMDataView>> {
DEFINE_WRAPPERTYPEINFO();
public:
using MapType = HashMap<String, WTF::Vector<uint8_t>>;
explicit BluetoothServiceDataMap(const MapType&);
~BluetoothServiceDataMap() override;
const MapType& Map() const { return parameter_map_; }
// IDL attributes / methods
uint32_t size() const { return parameter_map_.size(); }
private:
PairIterable<String, Member<DOMDataView>>::IterationSource* StartIteration(
ScriptState*,
ExceptionState&) override;
bool GetMapEntry(ScriptState*,
const String& key,
Member<DOMDataView>&,
ExceptionState&) override;
const MapType parameter_map_;
};
} // namespace blink
#endif