Make DidCreateScriptContext/WillReleaseScriptContext pure virtual.
This commit is contained in:
parent
0227254774
commit
f751335bf9
3 changed files with 19 additions and 9 deletions
|
@ -19,6 +19,10 @@ class RendererClientBase : public content::ContentRendererClient {
|
|||
RendererClientBase();
|
||||
virtual ~RendererClientBase();
|
||||
|
||||
virtual void DidCreateScriptContext(
|
||||
v8::Handle<v8::Context> context, content::RenderFrame* render_frame) = 0;
|
||||
virtual void WillReleaseScriptContext(
|
||||
v8::Handle<v8::Context> context, content::RenderFrame* render_frame) = 0;
|
||||
virtual void DidClearWindowObject(content::RenderFrame* render_frame);
|
||||
|
||||
protected:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue