Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(38)

Side by Side Diff: third_party/WebKit/Source/core/dom/URLSearchParams.h

Issue 1446963002: CREDENTIAL: Teach Fetch to handle PasswordCredential objects. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@opaque
Patch Set: webexposed Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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/UnionTypesCore.h"
(...skipping 28 matching lines...) Expand all
39 void append(const String& name, const String& value); 39 void append(const String& name, const String& value);
40 void deleteAllWithName(const String&); 40 void deleteAllWithName(const String&);
41 String get(const String&) const; 41 String get(const String&) const;
42 Vector<String> getAll(const String&) const; 42 Vector<String> getAll(const String&) const;
43 bool has(const String&) const; 43 bool has(const String&) const;
44 void set(const String& name, const String& value); 44 void set(const String& name, const String& value);
45 void setInput(const String&); 45 void setInput(const String&);
46 46
47 // Internal helpers 47 // Internal helpers
48 PassRefPtr<EncodedFormData> encodeFormData() const; 48 PassRefPtr<EncodedFormData> encodeFormData() const;
49 const Vector<std::pair<String, String>>& params() const { return m_params; }
49 50
50 DECLARE_TRACE(); 51 DECLARE_TRACE();
51 52
52 private: 53 private:
53 friend class URLSearchParamsTest_EncodedFormData_Test; 54 friend class URLSearchParamsTest_EncodedFormData_Test;
54 55
55 explicit URLSearchParams(const String&); 56 explicit URLSearchParams(const String&);
56 explicit URLSearchParams(URLSearchParams*); 57 explicit URLSearchParams(URLSearchParams*);
57 Vector<std::pair<String, String>> m_params; 58 Vector<std::pair<String, String>> m_params;
58 59
59 IterationSource* startIteration(ScriptState*, ExceptionState&) override; 60 IterationSource* startIteration(ScriptState*, ExceptionState&) override;
60 }; 61 };
61 62
62 } // namespace blink 63 } // namespace blink
63 64
64 #endif // URLSearchParams_h 65 #endif // URLSearchParams_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698