Don't hardcode Chromium remote debugging port.

Use the `--remote-debugging-port=8080` command line argument instead.
This commit is contained in:
Oliver Hamlet
2015-01-07 08:24:23 +00:00
parent dc2edb4e5f
commit 3f32207dc2
-3
View File
@@ -52,9 +52,6 @@ CefSettings GetCefSettings() {
// Set CEF logging.
CefString(&cef_settings.log_file).FromString((g_path_local / "CEFDebugLog.txt").string());
// Enable remote debugging.
cef_settings.remote_debugging_port = 8080;
return cef_settings;
}