Index: extensions/browser/api/web_view/web_view_internal_api.h |
diff --git a/extensions/browser/api/web_view/web_view_internal_api.h b/extensions/browser/api/web_view/web_view_internal_api.h |
index ad66ed28ba97af15cdfa76cdc844bc8f44d8b102..04b235997161a1e7acea77bed2dfee433db4a089 100644 |
--- a/extensions/browser/api/web_view/web_view_internal_api.h |
+++ b/extensions/browser/api/web_view/web_view_internal_api.h |
@@ -66,6 +66,7 @@ class WebViewInternalExecuteCodeFunction |
extensions::ScriptExecutor* GetScriptExecutor() final; |
bool IsWebView() const override; |
const GURL& GetWebViewSrc() const override; |
+ int GetScriptInjectionInstanceId() const override; |
private: |
// Contains extension resource built from path of file which is |
@@ -76,6 +77,8 @@ class WebViewInternalExecuteCodeFunction |
GURL guest_src_; |
+ int script_injection_instance_id_; |
Devlin
2015/02/06 00:28:41
You need to initialize this in the constructor.
Xi Han
2015/02/06 17:21:45
Done.
|
+ |
DISALLOW_COPY_AND_ASSIGN(WebViewInternalExecuteCodeFunction); |
}; |