Fix converting string to NSURL

This commit is contained in:
Cheng Zhao 2015-12-24 12:43:07 +08:00
parent aa85258d56
commit 7bd9f2e5d0

View file

@ -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;
}