Devtools: Remove session_id in browser
https://chromium-review.googlesource.com/c/chromium/src/+/866213
This commit is contained in:
parent
f32e59d4b2
commit
bf620363b9
2 changed files with 2 additions and 2 deletions
|
@ -95,7 +95,7 @@ void DevToolsManagerDelegate::Inspect(content::DevToolsAgentHost* agent_host) {}
|
||||||
|
|
||||||
bool DevToolsManagerDelegate::HandleCommand(
|
bool DevToolsManagerDelegate::HandleCommand(
|
||||||
content::DevToolsAgentHost* agent_host,
|
content::DevToolsAgentHost* agent_host,
|
||||||
int session_id,
|
content::DevToolsAgentHostClient* client,
|
||||||
base::DictionaryValue* command) {
|
base::DictionaryValue* command) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
|
@ -23,7 +23,7 @@ class DevToolsManagerDelegate : public content::DevToolsManagerDelegate {
|
||||||
// DevToolsManagerDelegate implementation.
|
// DevToolsManagerDelegate implementation.
|
||||||
void Inspect(content::DevToolsAgentHost* agent_host) override;
|
void Inspect(content::DevToolsAgentHost* agent_host) override;
|
||||||
bool HandleCommand(content::DevToolsAgentHost* agent_host,
|
bool HandleCommand(content::DevToolsAgentHost* agent_host,
|
||||||
int session_id,
|
content::DevToolsAgentHostClient* client,
|
||||||
base::DictionaryValue* command) override;
|
base::DictionaryValue* command) override;
|
||||||
scoped_refptr<content::DevToolsAgentHost> CreateNewTarget(
|
scoped_refptr<content::DevToolsAgentHost> CreateNewTarget(
|
||||||
const GURL& url) override;
|
const GURL& url) override;
|
||||||
|
|
Loading…
Reference in a new issue