InspectableWebContents should be able to accept existing WebContents.

This commit is contained in:
Cheng Zhao 2013-04-20 13:24:45 +08:00
parent 80cb76355c
commit 082aa61870
4 changed files with 9 additions and 4 deletions

View file

@ -10,6 +10,7 @@ class InspectableWebContentsView;
class InspectableWebContents {
public:
static InspectableWebContents* Create(const content::WebContents::CreateParams&);
static InspectableWebContents* Create(content::WebContents*);
virtual ~InspectableWebContents() {}
virtual InspectableWebContentsView* GetView() const = 0;