| 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 "modules/websockets/DOMWebSocket.h" | 5 #include "modules/websockets/DOMWebSocket.h" |
| 6 | 6 |
| 7 #include <v8.h> |
| 8 #include <memory> |
| 7 #include "bindings/core/v8/ExceptionState.h" | 9 #include "bindings/core/v8/ExceptionState.h" |
| 8 #include "bindings/core/v8/V8Binding.h" | 10 #include "bindings/core/v8/V8Binding.h" |
| 9 #include "bindings/core/v8/V8BindingForTesting.h" | 11 #include "bindings/core/v8/V8BindingForTesting.h" |
| 10 #include "core/dom/DOMTypedArray.h" | 12 #include "core/dom/DOMTypedArray.h" |
| 11 #include "core/dom/Document.h" | 13 #include "core/dom/Document.h" |
| 12 #include "core/dom/ExceptionCode.h" | 14 #include "core/dom/ExceptionCode.h" |
| 13 #include "core/dom/SecurityContext.h" | 15 #include "core/dom/SecurityContext.h" |
| 14 #include "core/fileapi/Blob.h" | 16 #include "core/fileapi/Blob.h" |
| 15 #include "core/inspector/ConsoleTypes.h" | 17 #include "core/inspector/ConsoleTypes.h" |
| 16 #include "core/testing/DummyPageHolder.h" | 18 #include "core/testing/DummyPageHolder.h" |
| 17 #include "platform/heap/Handle.h" | 19 #include "platform/heap/Handle.h" |
| 18 #include "public/platform/WebInsecureRequestPolicy.h" | 20 #include "public/platform/WebInsecureRequestPolicy.h" |
| 19 #include "testing/gmock/include/gmock/gmock.h" | 21 #include "testing/gmock/include/gmock/gmock.h" |
| 20 #include "testing/gtest/include/gtest/gtest.h" | 22 #include "testing/gtest/include/gtest/gtest.h" |
| 21 #include "wtf/Vector.h" | 23 #include "wtf/Vector.h" |
| 22 #include "wtf/text/CString.h" | 24 #include "wtf/text/CString.h" |
| 23 #include "wtf/text/StringBuilder.h" | 25 #include "wtf/text/StringBuilder.h" |
| 24 #include "wtf/text/WTFString.h" | 26 #include "wtf/text/WTFString.h" |
| 25 #include <memory> | |
| 26 #include <v8.h> | |
| 27 | 27 |
| 28 using testing::_; | 28 using testing::_; |
| 29 using testing::AnyNumber; | 29 using testing::AnyNumber; |
| 30 using testing::InSequence; | 30 using testing::InSequence; |
| 31 using testing::Ref; | 31 using testing::Ref; |
| 32 using testing::Return; | 32 using testing::Return; |
| 33 | 33 |
| 34 namespace blink { | 34 namespace blink { |
| 35 | 35 |
| 36 namespace { | 36 namespace { |
| (...skipping 844 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 881 } | 881 } |
| 882 | 882 |
| 883 INSTANTIATE_TEST_CASE_P( | 883 INSTANTIATE_TEST_CASE_P( |
| 884 DOMWebSocketInvalidClosingCode, | 884 DOMWebSocketInvalidClosingCode, |
| 885 DOMWebSocketInvalidClosingCodeTest, | 885 DOMWebSocketInvalidClosingCodeTest, |
| 886 ::testing::Values(0, 1, 998, 999, 1001, 2999, 5000, 9999, 65535)); | 886 ::testing::Values(0, 1, 998, 999, 1001, 2999, 5000, 9999, 65535)); |
| 887 | 887 |
| 888 } // namespace | 888 } // namespace |
| 889 | 889 |
| 890 } // namespace blink | 890 } // namespace blink |
| OLD | NEW |