Update to Chromium revision 160122.

git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@843 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
Marshall Greenblatt
2012-10-04 19:17:13 +00:00
parent 13afc1226f
commit 163cc7d9cc
14 changed files with 159 additions and 33 deletions

View File

@@ -73,9 +73,7 @@ void CefBrowserMainParts::PreMainMessageLoopRun() {
command_line.GetSwitchValueASCII(switches::kRemoteDebuggingPort);
int port;
if (base::StringToInt(port_str, &port) && port > 0 && port < 65535) {
devtools_delegate_ = new CefDevToolsDelegate(
port,
browser_context_->GetRequestContext());
devtools_delegate_ = new CefDevToolsDelegate(port);
} else {
DLOG(WARNING) << "Invalid http debugger port number " << port;
}