// Copyright 2016 The Chromium Authors // 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_CORE_TESTING_ORIGIN_TRIALS_TEST_H_ #define THIRD_PARTY_BLINK_RENDERER_CORE_TESTING_ORIGIN_TRIALS_TEST_H_ #include "third_party/blink/renderer/bindings/core/v8/v8_origin_trials_test_dictionary.h" #include "third_party/blink/renderer/platform/bindings/script_wrappable.h" namespace blink { class ExceptionState; class ScriptState; // OriginTrialsTest is a very simple interface used for testing // origin-trial-enabled features which are attached directly to interfaces at // run-time. class OriginTrialsTest : public ScriptWrappable { … }; } // namespace blink #endif // THIRD_PARTY_BLINK_RENDERER_CORE_TESTING_ORIGIN_TRIALS_TEST_H_