Chromium Code Reviews| Index: public/web/WebIconURL.h |
| diff --git a/public/web/WebIconURL.h b/public/web/WebIconURL.h |
| index 429c5c36bee52d6d9a73759931ed2c8939ca5722..fa2d7b5f20eb2aff9b8e8f2cf3f46807342a17de 100644 |
| --- a/public/web/WebIconURL.h |
| +++ b/public/web/WebIconURL.h |
| @@ -34,7 +34,9 @@ |
| #if BLINK_IMPLEMENTATION |
| #include "core/dom/IconURL.h" |
| #endif |
| -#include "../platform/WebURL.h" |
| +#include "public/platform/WebSize.h" |
| +#include "public/platform/WebURL.h" |
| +#include "public/platform/WebVector.h" |
| namespace blink { |
| @@ -68,10 +70,15 @@ public: |
| return m_iconURL; |
| } |
| + const WebVector<WebSize>& sizes() const |
| + { |
| + return m_sizes; |
| + } |
|
abarth-chromium
2014/03/12 19:42:34
You're missing a blank line after this line.
michaelbai
2014/03/12 23:08:41
Done.
|
| #if BLINK_IMPLEMENTATION |
| WebIconURL(const WebCore::IconURL& iconURL) |
| : m_iconType(static_cast<Type>(iconURL.m_iconType)) |
| , m_iconURL(iconURL.m_iconURL) |
| + , m_sizes(iconURL.m_sizes) |
| { |
| } |
| #endif |
| @@ -79,6 +86,7 @@ public: |
| private: |
| Type m_iconType; |
| WebURL m_iconURL; |
| + WebVector<WebSize> m_sizes; |
| }; |
| } |