chromium/chrome/browser/controlled_frame/scoped_test_driver_proxy.cc

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

#include "chrome/browser/controlled_frame/scoped_test_driver_proxy.h"

#include <optional>
#include <string>

#include "base/check.h"
#include "base/json/json_reader.h"
#include "base/logging.h"
#include "base/memory/raw_ptr.h"
#include "base/values.h"
#include "content/public/browser/render_frame_host.h"
#include "content/public/browser/web_contents.h"
#include "content/public/test/browser_test_utils.h"
#include "content/public/test/test_devtools_protocol_client.h"

namespace controlled_frame {
namespace {

void HandleSetPermission(content::TestDevToolsProtocolClient& devtools_client,
                         const base::Value::Dict& arguments) {}

}  // namespace

ScopedTestDriverProxy::ScopedTestDriverProxy(
    content::RenderFrameHost* render_frame_host)
    :{}

ScopedTestDriverProxy::~ScopedTestDriverProxy() {}

// static
const char* ScopedTestDriverProxy::testdriver_override_script_src() {}

void ScopedTestDriverProxy::HandleMessages() {}

}  // namespace controlled_frame