14 lines
398 B
C++
14 lines
398 B
C++
#include "brightray/browser/inspectable_web_contents.h"
|
|
|
|
#include "brightray/browser/inspectable_web_contents_impl.h"
|
|
|
|
namespace brightray {
|
|
|
|
InspectableWebContents* InspectableWebContents::Create(
|
|
content::WebContents* web_contents,
|
|
PrefService* pref_service,
|
|
bool is_guest) {
|
|
return new InspectableWebContentsImpl(web_contents, pref_service, is_guest);
|
|
}
|
|
|
|
} // namespace brightray
|