electron/brightray/browser/inspectable_web_contents.cc

19 lines
537 B
C++
Raw Normal View History

#include "brightray/browser/inspectable_web_contents.h"
#include "brightray/browser/inspectable_web_contents_impl.h"
namespace brightray {
InspectableWebContents* InspectableWebContents::Create(
const content::WebContents::CreateParams& create_params) {
auto* contents = content::WebContents::Create(create_params);
return Create(contents);
}
InspectableWebContents* InspectableWebContents::Create(
content::WebContents* web_contents) {
return new InspectableWebContentsImpl(web_contents);
}
} // namespace brightray