| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 URLSearchParams_h | 5 #ifndef URLSearchParams_h |
| 6 #define URLSearchParams_h | 6 #define URLSearchParams_h |
| 7 | 7 |
| 8 #include "bindings/core/v8/Iterable.h" | 8 #include "bindings/core/v8/Iterable.h" |
| 9 #include "bindings/core/v8/ScriptWrappable.h" | 9 #include "bindings/core/v8/ScriptWrappable.h" |
| 10 #include "bindings/core/v8/UnionTypesCore.h" | 10 #include "bindings/core/v8/USVStringOrURLSearchParams.h" |
| 11 #include "platform/heap/Handle.h" | 11 #include "platform/heap/Handle.h" |
| 12 #include "platform/network/EncodedFormData.h" | 12 #include "platform/network/EncodedFormData.h" |
| 13 #include "wtf/Forward.h" | 13 #include "wtf/Forward.h" |
| 14 #include "wtf/text/WTFString.h" | 14 #include "wtf/text/WTFString.h" |
| 15 #include <base/gtest_prod_util.h> | 15 #include <base/gtest_prod_util.h> |
| 16 #include <utility> | 16 #include <utility> |
| 17 | 17 |
| 18 namespace blink { | 18 namespace blink { |
| 19 | 19 |
| 20 class ExceptionState; | 20 class ExceptionState; |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 IterationSource* startIteration(ScriptState*, ExceptionState&) override; | 65 IterationSource* startIteration(ScriptState*, ExceptionState&) override; |
| 66 | 66 |
| 67 Vector<std::pair<String, String>> m_params; | 67 Vector<std::pair<String, String>> m_params; |
| 68 | 68 |
| 69 WeakMember<DOMURL> m_urlObject; | 69 WeakMember<DOMURL> m_urlObject; |
| 70 }; | 70 }; |
| 71 | 71 |
| 72 } // namespace blink | 72 } // namespace blink |
| 73 | 73 |
| 74 #endif // URLSearchParams_h | 74 #endif // URLSearchParams_h |
| OLD | NEW |