12 lines
297 B
C++
12 lines
297 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 new InspectableWebContentsImpl(create_params);
|
||
|
}
|
||
|
|
||
|
}
|