From 3f32207dc2c5e6a1e2954e5ee2987e86e18103b3 Mon Sep 17 00:00:00 2001 From: Oliver Hamlet Date: Wed, 7 Jan 2015 08:24:23 +0000 Subject: [PATCH] Don't hardcode Chromium remote debugging port. Use the `--remote-debugging-port=8080` command line argument instead. --- src/gui/main_win.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/gui/main_win.cpp b/src/gui/main_win.cpp index 403ccf42..e1060176 100644 --- a/src/gui/main_win.cpp +++ b/src/gui/main_win.cpp @@ -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; }