Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make shortcut work on Windows (uplift to 0.67.x) #2553

Merged
merged 1 commit into from
May 31, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions patches/chrome-chrome_proxy-chrome_proxy_main_win.cc.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
diff --git a/chrome/chrome_proxy/chrome_proxy_main_win.cc b/chrome/chrome_proxy/chrome_proxy_main_win.cc
index 2f0ac834da5d1aff7a8917b835b4fb0bee5ed534..1b045e72048e7a1e55c74b673a0d7d01c7cef241 100644
--- a/chrome/chrome_proxy/chrome_proxy_main_win.cc
+++ b/chrome/chrome_proxy/chrome_proxy_main_win.cc
@@ -13,7 +13,11 @@
namespace {

constexpr base::FilePath::CharType kChromeExecutable[] =
+#if defined(BRAVE_CHROMIUM_BUILD)
+ FILE_PATH_LITERAL("brave.exe");
+#else
FILE_PATH_LITERAL("chrome.exe");
+#endif

constexpr base::FilePath::CharType kChromeProxyExecutable[] =
FILE_PATH_LITERAL("chrome_proxy.exe");