mirror of
https://github.com/electron/electron.git
synced 2026-04-10 03:01:51 -04:00
15 lines
398 B
C++
15 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
|