| 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 #ifndef FormDataTest_h | |
| 6 #define FormDataTest_h | |
| 7 | |
| 8 #include "config.h" | 5 #include "config.h" |
| 9 #include "platform/network/FormData.h" | 6 #include "platform/network/FormData.h" |
| 10 | 7 |
| 11 #include <gtest/gtest.h> | 8 #include <gtest/gtest.h> |
| 12 | 9 |
| 13 namespace blink { | 10 namespace blink { |
| 14 | 11 |
| 15 namespace { | 12 namespace { |
| 16 | 13 |
| 17 class FormDataTest : public ::testing::Test { | 14 class FormDataTest : public ::testing::Test { |
| (...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 | 107 |
| 111 EXPECT_EQ(nullptr, copyElements[i].m_fileSystemURL.innerURL()); | 108 EXPECT_EQ(nullptr, copyElements[i].m_fileSystemURL.innerURL()); |
| 112 | 109 |
| 113 // m_optionalBlobDataHandle is not checked, because BlobDataHandle is Th
readSafeRefCounted. | 110 // m_optionalBlobDataHandle is not checked, because BlobDataHandle is Th
readSafeRefCounted. |
| 114 } | 111 } |
| 115 } | 112 } |
| 116 | 113 |
| 117 } // namespace | 114 } // namespace |
| 118 | 115 |
| 119 } // namespace blink | 116 } // namespace blink |
| 120 | |
| 121 #endif | |
| OLD | NEW |