Merge pull request #3913 from atom/fix-nsurl
Fix converting string to NSURL
This commit is contained in:
Коммит
e41dad5153
|
@ -12,6 +12,7 @@
|
|||
#include "base/mac/mac_logging.h"
|
||||
#include "base/mac/scoped_aedesc.h"
|
||||
#include "base/strings/sys_string_conversions.h"
|
||||
#include "net/base/mac/url_conversions.h"
|
||||
#include "url/gurl.h"
|
||||
|
||||
namespace platform_util {
|
||||
|
@ -120,9 +121,7 @@ void OpenItem(const base::FilePath& full_path) {
|
|||
|
||||
bool OpenExternal(const GURL& url) {
|
||||
DCHECK([NSThread isMainThread]);
|
||||
NSString* url_string = base::SysUTF8ToNSString(url.spec());
|
||||
NSString* url_escaped_string = [url_string stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
|
||||
NSURL* ns_url = [NSURL URLWithString:url_escaped_string];
|
||||
NSURL* ns_url = net::NSURLWithGURL(url);
|
||||
if (!ns_url) {
|
||||
return false;
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче