| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2011 Google Inc. All rights reserved. | 2 * Copyright (C) 2011 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 are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * 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 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 29 */ | 29 */ |
| 30 | 30 |
| 31 #include "core/dom/IconURL.h" | 31 #include "core/dom/IconURL.h" |
| 32 | 32 |
| 33 namespace blink { | 33 namespace blink { |
| 34 | 34 |
| 35 IconURL IconURL::defaultFavicon(const KURL& documentURL) | 35 IconURL IconURL::defaultFavicon(const KURL& documentURL) |
| 36 { | 36 { |
| 37 ASSERT(documentURL.protocolIsInHTTPFamily()); | 37 DCHECK(documentURL.protocolIsInHTTPFamily()); |
| 38 KURL url; | 38 KURL url; |
| 39 bool couldSetProtocol = url.setProtocol(documentURL.protocol()); | 39 bool couldSetProtocol = url.setProtocol(documentURL.protocol()); |
| 40 ASSERT_UNUSED(couldSetProtocol, couldSetProtocol); | 40 ASSERT_UNUSED(couldSetProtocol, couldSetProtocol); |
| 41 url.setHost(documentURL.host()); | 41 url.setHost(documentURL.host()); |
| 42 if (documentURL.hasPort()) | 42 if (documentURL.hasPort()) |
| 43 url.setPort(documentURL.port()); | 43 url.setPort(documentURL.port()); |
| 44 url.setPath("/favicon.ico"); | 44 url.setPath("/favicon.ico"); |
| 45 | 45 |
| 46 IconURL result(url, Vector<IntSize>(), emptyString(), Favicon); | 46 IconURL result(url, Vector<IntSize>(), emptyString(), Favicon); |
| 47 result.m_isDefaultIcon = true; | 47 result.m_isDefaultIcon = true; |
| 48 return result; | 48 return result; |
| 49 } | 49 } |
| 50 | 50 |
| 51 bool operator==(const IconURL& lhs, const IconURL& rhs) | 51 bool operator==(const IconURL& lhs, const IconURL& rhs) |
| 52 { | 52 { |
| 53 return lhs.m_iconType == rhs.m_iconType | 53 return lhs.m_iconType == rhs.m_iconType |
| 54 && lhs.m_isDefaultIcon == rhs.m_isDefaultIcon | 54 && lhs.m_isDefaultIcon == rhs.m_isDefaultIcon |
| 55 && lhs.m_iconURL == rhs.m_iconURL | 55 && lhs.m_iconURL == rhs.m_iconURL |
| 56 && lhs.m_sizes == rhs.m_sizes | 56 && lhs.m_sizes == rhs.m_sizes |
| 57 && lhs.m_mimeType == rhs.m_mimeType; | 57 && lhs.m_mimeType == rhs.m_mimeType; |
| 58 } | 58 } |
| 59 | 59 |
| 60 } // namespace blink | 60 } // namespace blink |
| OLD | NEW |