OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 NET_BASE_URL_UTIL_H_ | 5 #ifndef NET_BASE_URL_UTIL_H_ |
6 #define NET_BASE_URL_UTIL_H_ | 6 #define NET_BASE_URL_UTIL_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
11 #include "net/base/net_export.h" | 11 #include "net/base/net_export.h" |
12 #include "url/url_parse.h" | 12 #include "url/third_party/mozilla/url_parse.h" |
13 | 13 |
14 class GURL; | 14 class GURL; |
15 | 15 |
16 namespace net { | 16 namespace net { |
17 | 17 |
18 // Returns a new GURL by appending the given query parameter name and the | 18 // Returns a new GURL by appending the given query parameter name and the |
19 // value. Unsafe characters in the name and the value are escaped like | 19 // value. Unsafe characters in the name and the value are escaped like |
20 // %XX%XX. The original query component is preserved if it's present. | 20 // %XX%XX. The original query component is preserved if it's present. |
21 // | 21 // |
22 // Examples: | 22 // Examples: |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
73 // Looks for |search_key| in the query portion of |url|. Returns true if the | 73 // Looks for |search_key| in the query portion of |url|. Returns true if the |
74 // key is found and sets |out_value| to the unescaped value for the key. | 74 // key is found and sets |out_value| to the unescaped value for the key. |
75 // Returns false if the key is not found. | 75 // Returns false if the key is not found. |
76 NET_EXPORT bool GetValueForKeyInQuery(const GURL& url, | 76 NET_EXPORT bool GetValueForKeyInQuery(const GURL& url, |
77 const std::string& search_key, | 77 const std::string& search_key, |
78 std::string* out_value); | 78 std::string* out_value); |
79 | 79 |
80 } // namespace net | 80 } // namespace net |
81 | 81 |
82 #endif // NET_BASE_URL_UTIL_H_ | 82 #endif // NET_BASE_URL_UTIL_H_ |
OLD | NEW |