// Copyright 2013 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CONTENT_SHELL_BROWSER_SHELL_DEVTOOLS_FRONTEND_H_ #define CONTENT_SHELL_BROWSER_SHELL_DEVTOOLS_FRONTEND_H_ #include <memory> #include "base/memory/raw_ptr.h" #include "base/memory/weak_ptr.h" #include "content/public/browser/web_contents_observer.h" #include "content/shell/browser/shell_devtools_bindings.h" namespace content { class Shell; class WebContents; class ShellDevToolsFrontend : public ShellDevToolsDelegate, public WebContentsObserver { … }; } // namespace content #endif // CONTENT_SHELL_BROWSER_SHELL_DEVTOOLS_FRONTEND_H_