mirror of
https://github.com/electron/electron.git
synced 2026-04-10 03:01:51 -04:00
16 lines
454 B
C++
16 lines
454 B
C++
#include "browser/inspectable_web_contents.h"
|
|
|
|
#include "browser/inspectable_web_contents_impl.h"
|
|
|
|
namespace brightray {
|
|
|
|
InspectableWebContents* InspectableWebContents::Create(const content::WebContents::CreateParams& create_params) {
|
|
return Create(content::WebContents::Create(create_params));
|
|
}
|
|
|
|
InspectableWebContents* InspectableWebContents::Create(content::WebContents* web_contents) {
|
|
return new InspectableWebContentsImpl(web_contents);
|
|
}
|
|
|
|
}
|