| 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 <base/gtest_prod_util.h> | 8 #include <base/gtest_prod_util.h> |
| 9 #include <utility> | 9 #include <utility> |
| 10 #include "bindings/core/v8/Iterable.h" | 10 #include "bindings/core/v8/Iterable.h" |
| 11 #include "bindings/core/v8/ScriptWrappable.h" | 11 #include "bindings/core/v8/ScriptWrappable.h" |
| 12 #include "bindings/core/v8/USVStringSequenceSequenceOrUSVStringOrURLSearchParams
.h" | 12 #include "bindings/core/v8/USVStringSequenceSequenceOrUSVStringOrURLSearchParams
.h" |
| 13 #include "platform/heap/Handle.h" | 13 #include "platform/heap/Handle.h" |
| 14 #include "platform/network/EncodedFormData.h" | 14 #include "platform/network/EncodedFormData.h" |
| 15 #include "wtf/Forward.h" | 15 #include "platform/wtf/Forward.h" |
| 16 #include "wtf/text/WTFString.h" | 16 #include "platform/wtf/text/WTFString.h" |
| 17 | 17 |
| 18 namespace blink { | 18 namespace blink { |
| 19 | 19 |
| 20 class ExceptionState; | 20 class ExceptionState; |
| 21 class DOMURL; | 21 class DOMURL; |
| 22 | 22 |
| 23 typedef USVStringSequenceSequenceOrUSVStringOrURLSearchParams | 23 typedef USVStringSequenceSequenceOrUSVStringOrURLSearchParams |
| 24 URLSearchParamsInit; | 24 URLSearchParamsInit; |
| 25 | 25 |
| 26 class CORE_EXPORT URLSearchParams final | 26 class CORE_EXPORT URLSearchParams final |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 void AppendWithoutUpdate(const String& name, const String& value); | 74 void AppendWithoutUpdate(const String& name, const String& value); |
| 75 | 75 |
| 76 Vector<std::pair<String, String>> params_; | 76 Vector<std::pair<String, String>> params_; |
| 77 | 77 |
| 78 WeakMember<DOMURL> url_object_; | 78 WeakMember<DOMURL> url_object_; |
| 79 }; | 79 }; |
| 80 | 80 |
| 81 } // namespace blink | 81 } // namespace blink |
| 82 | 82 |
| 83 #endif // URLSearchParams_h | 83 #endif // URLSearchParams_h |
| OLD | NEW |