| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "content/child/blink_platform_impl.h" | 5 #include "content/child/blink_platform_impl.h" |
| 6 | 6 |
| 7 #include <math.h> | 7 #include <math.h> |
| 8 | 8 |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 487 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 498 } | 498 } |
| 499 | 499 |
| 500 bool BlinkPlatformImpl::isReservedIPAddress( | 500 bool BlinkPlatformImpl::isReservedIPAddress( |
| 501 const blink::WebString& host) const { | 501 const blink::WebString& host) const { |
| 502 net::IPAddressNumber address; | 502 net::IPAddressNumber address; |
| 503 if (!net::ParseURLHostnameToNumber(host.utf8(), &address)) | 503 if (!net::ParseURLHostnameToNumber(host.utf8(), &address)) |
| 504 return false; | 504 return false; |
| 505 return net::IsIPAddressReserved(address); | 505 return net::IsIPAddressReserved(address); |
| 506 } | 506 } |
| 507 | 507 |
| 508 bool BlinkPlatformImpl::portAllowed(const blink::WebURL& url) const { |
| 509 GURL gurl = GURL(url); |
| 510 if (!gurl.has_port()) |
| 511 return true; |
| 512 int port = gurl.IntPort(); |
| 513 if (net::IsPortAllowedByOverride(port)) |
| 514 return true; |
| 515 if (gurl.SchemeIs("ftp")) |
| 516 return net::IsPortAllowedByFtp(port); |
| 517 return net::IsPortAllowedByDefault(port); |
| 518 } |
| 519 |
| 508 blink::WebThread* BlinkPlatformImpl::createThread(const char* name) { | 520 blink::WebThread* BlinkPlatformImpl::createThread(const char* name) { |
| 509 WebThreadImpl* thread = new WebThreadImpl(name); | 521 WebThreadImpl* thread = new WebThreadImpl(name); |
| 510 thread->TaskRunner()->PostTask( | 522 thread->TaskRunner()->PostTask( |
| 511 FROM_HERE, base::Bind(&BlinkPlatformImpl::UpdateWebThreadTLS, | 523 FROM_HERE, base::Bind(&BlinkPlatformImpl::UpdateWebThreadTLS, |
| 512 base::Unretained(this), thread)); | 524 base::Unretained(this), thread)); |
| 513 return thread; | 525 return thread; |
| 514 } | 526 } |
| 515 | 527 |
| 516 blink::WebThread* BlinkPlatformImpl::currentThread() { | 528 blink::WebThread* BlinkPlatformImpl::currentThread() { |
| 517 return static_cast<blink::WebThread*>(current_thread_slot_.Get()); | 529 return static_cast<blink::WebThread*>(current_thread_slot_.Get()); |
| (...skipping 803 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1321 return WebString::fromUTF8(ui::KeycodeConverter::DomCodeToCodeString( | 1333 return WebString::fromUTF8(ui::KeycodeConverter::DomCodeToCodeString( |
| 1322 static_cast<ui::DomCode>(dom_code))); | 1334 static_cast<ui::DomCode>(dom_code))); |
| 1323 } | 1335 } |
| 1324 | 1336 |
| 1325 int BlinkPlatformImpl::domEnumFromCodeString(const WebString& code) { | 1337 int BlinkPlatformImpl::domEnumFromCodeString(const WebString& code) { |
| 1326 return static_cast<int>(ui::KeycodeConverter::CodeStringToDomCode( | 1338 return static_cast<int>(ui::KeycodeConverter::CodeStringToDomCode( |
| 1327 code.utf8().data())); | 1339 code.utf8().data())); |
| 1328 } | 1340 } |
| 1329 | 1341 |
| 1330 } // namespace content | 1342 } // namespace content |
| OLD | NEW |