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 18 matching lines...) Expand all Loading... |
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 DCHECK(documentURL.protocolIsInHTTPFamily()); | 36 DCHECK(documentURL.protocolIsInHTTPFamily()); |
37 KURL url; | 37 KURL url; |
38 bool couldSetProtocol = url.setProtocol(documentURL.protocol()); | 38 bool couldSetProtocol = url.setProtocol(documentURL.protocol()); |
39 ASSERT_UNUSED(couldSetProtocol, couldSetProtocol); | 39 DCHECK(couldSetProtocol); |
40 url.setHost(documentURL.host()); | 40 url.setHost(documentURL.host()); |
41 if (documentURL.hasPort()) | 41 if (documentURL.hasPort()) |
42 url.setPort(documentURL.port()); | 42 url.setPort(documentURL.port()); |
43 url.setPath("/favicon.ico"); | 43 url.setPath("/favicon.ico"); |
44 | 44 |
45 IconURL result(url, Vector<IntSize>(), emptyString(), Favicon); | 45 IconURL result(url, Vector<IntSize>(), emptyString(), Favicon); |
46 result.m_isDefaultIcon = true; | 46 result.m_isDefaultIcon = true; |
47 return result; | 47 return result; |
48 } | 48 } |
49 | 49 |
50 bool operator==(const IconURL& lhs, const IconURL& rhs) { | 50 bool operator==(const IconURL& lhs, const IconURL& rhs) { |
51 return lhs.m_iconType == rhs.m_iconType && | 51 return lhs.m_iconType == rhs.m_iconType && |
52 lhs.m_isDefaultIcon == rhs.m_isDefaultIcon && | 52 lhs.m_isDefaultIcon == rhs.m_isDefaultIcon && |
53 lhs.m_iconURL == rhs.m_iconURL && lhs.m_sizes == rhs.m_sizes && | 53 lhs.m_iconURL == rhs.m_iconURL && lhs.m_sizes == rhs.m_sizes && |
54 lhs.m_mimeType == rhs.m_mimeType; | 54 lhs.m_mimeType == rhs.m_mimeType; |
55 } | 55 } |
56 | 56 |
57 } // namespace blink | 57 } // namespace blink |
OLD | NEW |