mirror of
https://github.com/openharmony/third_party_cef.git
synced 2026-07-22 13:06:01 -04:00
c830a900c6
Description:升级CEF 4844版本 Sig: SIG_ApplicationFramework Feature or Bugfix: Feature Binary Source: No Signed-off-by: wuliubao <ahjxliubao@163.com>
36 lines
1.2 KiB
C++
36 lines
1.2 KiB
C++
// Copyright 2013 The Chromium Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#ifndef CEF_LIBCEF_BROWSER_DEVTOOLS_DEVTOOLS_MANAGER_DELEGATE_H_
|
|
#define CEF_LIBCEF_BROWSER_DEVTOOLS_DEVTOOLS_MANAGER_DELEGATE_H_
|
|
|
|
#include "base/compiler_specific.h"
|
|
#include "content/public/browser/devtools_manager_delegate.h"
|
|
|
|
namespace content {
|
|
class BrowserContext;
|
|
}
|
|
|
|
class CefDevToolsManagerDelegate : public content::DevToolsManagerDelegate {
|
|
public:
|
|
static void StartHttpHandler(content::BrowserContext* browser_context);
|
|
static void StopHttpHandler();
|
|
|
|
CefDevToolsManagerDelegate();
|
|
|
|
CefDevToolsManagerDelegate(const CefDevToolsManagerDelegate&) = delete;
|
|
CefDevToolsManagerDelegate& operator=(const CefDevToolsManagerDelegate&) =
|
|
delete;
|
|
|
|
~CefDevToolsManagerDelegate() override;
|
|
|
|
// DevToolsManagerDelegate implementation.
|
|
scoped_refptr<content::DevToolsAgentHost> CreateNewTarget(
|
|
const GURL& url) override;
|
|
std::string GetDiscoveryPageHTML() override;
|
|
bool HasBundledFrontendResources() override;
|
|
};
|
|
|
|
#endif // CEF_LIBCEF_BROWSER_DEVTOOLS_DEVTOOLS_MANAGER_DELEGATE_H_
|