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 "base/run_loop.h" | 7 #include "base/run_loop.h" |
8 #include "base/time/time.h" | 8 #include "base/time/time.h" |
9 #include "net/base/net_util.h" | 9 #include "net/base/ip_address_number.h" |
10 #include "testing/gtest/include/gtest/gtest.h" | 10 #include "testing/gtest/include/gtest/gtest.h" |
11 #include "third_party/WebKit/public/platform/WebString.h" | 11 #include "third_party/WebKit/public/platform/WebString.h" |
12 #include "third_party/WebKit/public/web/WebSecurityOrigin.h" | 12 #include "third_party/WebKit/public/web/WebSecurityOrigin.h" |
13 | 13 |
14 namespace content { | 14 namespace content { |
15 | 15 |
16 // Derives BlinkPlatformImpl for testing shared timers. | 16 // Derives BlinkPlatformImpl for testing shared timers. |
17 class TestBlinkPlatformImpl : public BlinkPlatformImpl { | 17 class TestBlinkPlatformImpl : public BlinkPlatformImpl { |
18 public: | 18 public: |
19 TestBlinkPlatformImpl() : mock_monotonically_increasing_time_(0) {} | 19 TestBlinkPlatformImpl() : mock_monotonically_increasing_time_(0) {} |
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
126 EXPECT_TRUE(platform_impl.portAllowed(GURL("file://example.com"))); | 126 EXPECT_TRUE(platform_impl.portAllowed(GURL("file://example.com"))); |
127 EXPECT_TRUE(platform_impl.portAllowed(GURL("file://example.com:87"))); | 127 EXPECT_TRUE(platform_impl.portAllowed(GURL("file://example.com:87"))); |
128 EXPECT_TRUE(platform_impl.portAllowed(GURL("ftp://example.com:21"))); | 128 EXPECT_TRUE(platform_impl.portAllowed(GURL("ftp://example.com:21"))); |
129 EXPECT_FALSE(platform_impl.portAllowed(GURL("ftp://example.com:87"))); | 129 EXPECT_FALSE(platform_impl.portAllowed(GURL("ftp://example.com:87"))); |
130 EXPECT_FALSE(platform_impl.portAllowed(GURL("ws://example.com:21"))); | 130 EXPECT_FALSE(platform_impl.portAllowed(GURL("ws://example.com:21"))); |
131 EXPECT_TRUE(platform_impl.portAllowed(GURL("http://example.com:80"))); | 131 EXPECT_TRUE(platform_impl.portAllowed(GURL("http://example.com:80"))); |
132 EXPECT_TRUE(platform_impl.portAllowed(GURL("http://example.com:8889"))); | 132 EXPECT_TRUE(platform_impl.portAllowed(GURL("http://example.com:8889"))); |
133 } | 133 } |
134 | 134 |
135 } // namespace content | 135 } // namespace content |
OLD | NEW |