fix: devtools allow restoring saved dock state on Windows (#39734)

* fix: devtools allow restoring saved dock state on Windows

* chore: address feedback
This commit is contained in:
Robo 2023-09-07 17:14:01 +09:00 committed by GitHub
parent f6e8544ef6
commit 0a064cece9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 30 additions and 15 deletions

View file

@ -40,13 +40,6 @@ namespace electron {
namespace {
bool IsAppRTL() {
const std::string& locale = g_browser_process->GetApplicationLocale();
base::i18n::TextDirection text_direction =
base::i18n::GetTextDirectionForLocaleInStartUp(locale.c_str());
return text_direction == base::i18n::RIGHT_TO_LEFT;
}
NSString* GetAppPathForProtocol(const GURL& url) {
NSURL* ns_url = [NSURL
URLWithString:base::SysUTF8ToNSString(url.possibly_invalid_spec())];