| 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 URL_THIRD_PARTY_MOZILLA_URL_PARSE_H_ | 5 #ifndef URL_THIRD_PARTY_MOZILLA_URL_PARSE_H_ |
| 6 #define URL_THIRD_PARTY_MOZILLA_URL_PARSE_H_ | 6 #define URL_THIRD_PARTY_MOZILLA_URL_PARSE_H_ |
| 7 | 7 |
| 8 #include <stddef.h> |
| 9 |
| 8 #include "base/strings/string16.h" | 10 #include "base/strings/string16.h" |
| 9 #include "url/url_export.h" | 11 #include "url/url_export.h" |
| 10 | 12 |
| 11 namespace url { | 13 namespace url { |
| 12 | 14 |
| 13 // Deprecated, but WebKit/WebCore/platform/KURLGooglePrivate.h and | 15 // Deprecated, but WebKit/WebCore/platform/KURLGooglePrivate.h and |
| 14 // KURLGoogle.cpp still rely on this type. | 16 // KURLGoogle.cpp still rely on this type. |
| 15 typedef base::char16 UTF16Char; | 17 typedef base::char16 UTF16Char; |
| 16 | 18 |
| 17 // Component ------------------------------------------------------------------ | 19 // Component ------------------------------------------------------------------ |
| (...skipping 342 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 360 Component* key, | 362 Component* key, |
| 361 Component* value); | 363 Component* value); |
| 362 URL_EXPORT bool ExtractQueryKeyValue(const base::char16* url, | 364 URL_EXPORT bool ExtractQueryKeyValue(const base::char16* url, |
| 363 Component* query, | 365 Component* query, |
| 364 Component* key, | 366 Component* key, |
| 365 Component* value); | 367 Component* value); |
| 366 | 368 |
| 367 } // namespace url | 369 } // namespace url |
| 368 | 370 |
| 369 #endif // URL_THIRD_PARTY_MOZILLA_URL_PARSE_H_ | 371 #endif // URL_THIRD_PARTY_MOZILLA_URL_PARSE_H_ |
| OLD | NEW |