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 ResourceLoaderOptionsTest_h | |
6 #define ResourceLoaderOptionsTest_h | |
7 | |
8 #include "config.h" | 5 #include "config.h" |
9 #include "core/fetch/ResourceLoaderOptions.h" | 6 #include "core/fetch/ResourceLoaderOptions.h" |
10 | 7 |
11 #include "wtf/TypeTraits.h" | 8 #include "wtf/TypeTraits.h" |
12 | 9 |
13 #include <gtest/gtest.h> | 10 #include <gtest/gtest.h> |
14 | 11 |
15 namespace blink { | 12 namespace blink { |
16 | 13 |
17 namespace { | 14 namespace { |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
85 | 82 |
86 // FIXME: The checks for content equality/pointer inequality for | 83 // FIXME: The checks for content equality/pointer inequality for |
87 // securityOrigin here is not complete (i.e. m_filePath is not checked). | 84 // securityOrigin here is not complete (i.e. m_filePath is not checked). |
88 // A unit test for SecurityOrigin::isolatedCopy() that covers these checks | 85 // A unit test for SecurityOrigin::isolatedCopy() that covers these checks |
89 // should be added. | 86 // should be added. |
90 } | 87 } |
91 | 88 |
92 } // namespace | 89 } // namespace |
93 | 90 |
94 } // namespace blink | 91 } // namespace blink |
95 | |
96 #endif // ResourceLoaderOptionsTest_h | |
OLD | NEW |