| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010 Google Inc. All rights reserved. | 2 * Copyright (C) 2010 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * | 7 * |
| 8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 24 */ | 24 */ |
| 25 | 25 |
| 26 #include "bindings/core/v8/DictionaryHelperForBindings.h" | 26 #include "bindings/core/v8/DictionaryHelperForBindings.h" |
| 27 #include "bindings/modules/v8/V8Headers.h" | 27 #include "bindings/modules/v8/V8Headers.h" |
| 28 #include "bindings/modules/v8/V8PasswordCredential.h" | 28 #include "bindings/modules/v8/V8PasswordCredential.h" |
| 29 | 29 |
| 30 namespace blink { | 30 namespace blink { |
| 31 | 31 |
| 32 template bool DictionaryHelper::get(const Dictionary&, const String& key, Member
<Headers>& value); | 32 template bool DictionaryHelper::get(const Dictionary&, const StringView& key, Me
mber<Headers>& value); |
| 33 template bool DictionaryHelper::get(const Dictionary&, const String& key, Member
<PasswordCredential>& value); | 33 template bool DictionaryHelper::get(const Dictionary&, const StringView& key, Me
mber<PasswordCredential>& value); |
| 34 | 34 |
| 35 } // namespace blink | 35 } // namespace blink |
| OLD | NEW |