chromium/extensions/renderer/bindings/test_interaction_provider.cc

// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "extensions/renderer/bindings/test_interaction_provider.h"

#include "base/check.h"

namespace extensions {

namespace {
bool g_mock_user_activation_v2_state_ =;
}

TestInteractionProvider::TestInteractionProvider() = default;

TestInteractionProvider::~TestInteractionProvider() = default;

std::unique_ptr<InteractionProvider::Token>
TestInteractionProvider::GetCurrentToken(
    v8::Local<v8::Context> v8_context) const {}

std::unique_ptr<InteractionProvider::Scope>
TestInteractionProvider::CreateScopedInteraction(
    v8::Local<v8::Context> v8_context,
    std::unique_ptr<InteractionProvider::Token> token) const {}

bool TestInteractionProvider::HasActiveInteraction(
    v8::Local<v8::Context> v8_context) const {}

ScopedTestUserActivation::ScopedTestUserActivation() {}

ScopedTestUserActivation::~ScopedTestUserActivation() {}

}  // namespace extensions