2017-05-18 22:58:12 +00:00
|
|
|
#include "brightray/browser/inspectable_web_contents.h"
|
2013-03-14 13:03:50 +00:00
|
|
|
|
2017-05-18 22:58:12 +00:00
|
|
|
#include "brightray/browser/inspectable_web_contents_impl.h"
|
2013-03-14 13:03:50 +00:00
|
|
|
|
|
|
|
namespace brightray {
|
|
|
|
|
2013-11-17 22:54:14 +00:00
|
|
|
InspectableWebContents* InspectableWebContents::Create(
|
2018-08-16 22:57:40 +00:00
|
|
|
content::WebContents* web_contents,
|
|
|
|
bool is_guest) {
|
|
|
|
return new InspectableWebContentsImpl(web_contents, is_guest);
|
2013-03-14 13:03:50 +00:00
|
|
|
}
|
|
|
|
|
2013-11-17 22:54:14 +00:00
|
|
|
} // namespace brightray
|