2013-03-14 09:03:50 -04:00
|
|
|
#include "browser/inspectable_web_contents.h"
|
|
|
|
|
|
|
|
#include "browser/inspectable_web_contents_impl.h"
|
|
|
|
|
|
|
|
namespace brightray {
|
|
|
|
|
|
|
|
InspectableWebContents* InspectableWebContents::Create(const content::WebContents::CreateParams& create_params) {
|
2013-04-22 20:41:58 +08:00
|
|
|
return Create(content::WebContents::Create(create_params));
|
2013-04-20 13:24:45 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
InspectableWebContents* InspectableWebContents::Create(content::WebContents* web_contents) {
|
|
|
|
return new InspectableWebContentsImpl(web_contents);
|
2013-03-14 09:03:50 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|