Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(928)

Side by Side Diff: content/shell/browser/shell_devtools_manager_delegate.cc

Issue 2234343002: Fixes naming issues in Browser protocol handler + adds tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/shell/browser/shell_devtools_manager_delegate.h" 5 #include "content/shell/browser/shell_devtools_manager_delegate.h"
6 6
7 #include <stdint.h> 7 #include <stdint.h>
8 8
9 #include <vector> 9 #include <vector>
10 10
(...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after
225 } 225 }
226 226
227 ShellDevToolsManagerDelegate::~ShellDevToolsManagerDelegate() { 227 ShellDevToolsManagerDelegate::~ShellDevToolsManagerDelegate() {
228 } 228 }
229 229
230 base::DictionaryValue* ShellDevToolsManagerDelegate::HandleCommand( 230 base::DictionaryValue* ShellDevToolsManagerDelegate::HandleCommand(
231 DevToolsAgentHost* agent_host, 231 DevToolsAgentHost* agent_host,
232 base::DictionaryValue* command_dict) { 232 base::DictionaryValue* command_dict) {
233 std::unique_ptr<base::DictionaryValue> result = 233 std::unique_ptr<base::DictionaryValue> result =
234 devtools_discovery::DevToolsDiscoveryManager::GetInstance() 234 devtools_discovery::DevToolsDiscoveryManager::GetInstance()
235 ->HandleNewTargetCommand(command_dict); 235 ->HandleCreateTargetCommand(command_dict);
236 return result.release(); // Caller takes ownership. 236 return result.release(); // Caller takes ownership.
237 } 237 }
238 238
239 } // namespace content 239 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698