// Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
interface DictionaryTest {
[CallWith=Isolate] void set(optional InternalDictionary testingDictionary = {});
[CallWith=Isolate] InternalDictionary get();
[CallWith=Isolate] void setDerived(InternalDictionaryDerived derived);
[CallWith=Isolate] InternalDictionaryDerived getDerived();
[CallWith=Isolate] void setDerivedDerived(InternalDictionaryDerivedDerived derived);
[CallWith=Isolate] InternalDictionaryDerivedDerived getDerivedDerived();
};