
This is modeled after a similar implementation for the JS console. This client takes over an inspector WebView (created by the chrome) to create the inspector application. Currently, this application includes the DOM tree and accessibility tree as a first pass. It can later be extended to included the style tables, the JS console itself, etc.
32 lines
452 B
C++
32 lines
452 B
C++
/*
|
|
* Copyright (c) 2022, The SerenityOS developers
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Traits.h>
|
|
|
|
namespace WebView {
|
|
|
|
class ConsoleClient;
|
|
class CookieJar;
|
|
class Database;
|
|
class History;
|
|
class InspectorClient;
|
|
class OutOfProcessWebView;
|
|
class ViewImplementation;
|
|
class WebContentClient;
|
|
|
|
struct CookieStorageKey;
|
|
struct SearchEngine;
|
|
|
|
}
|
|
|
|
namespace AK {
|
|
|
|
template<>
|
|
struct Traits<WebView::CookieStorageKey>;
|
|
|
|
}
|