| Index: public/platform/WebCredential.h
|
| diff --git a/public/platform/WebCredential.h b/public/platform/WebCredential.h
|
| index f40a3c159226da1d00bcfa0e8d69420d2f6b4884..7aaf128d3e6f7ccb924504b565c4749801dbdcad 100644
|
| --- a/public/platform/WebCredential.h
|
| +++ b/public/platform/WebCredential.h
|
| @@ -16,7 +16,7 @@ class PlatformCredential;
|
|
|
| class WebCredential {
|
| public:
|
| - BLINK_PLATFORM_EXPORT WebCredential(const WebString& id, const WebString& name, const WebURL& avatarURL);
|
| + BLINK_PLATFORM_EXPORT WebCredential(const WebString& id, const WebString& name, const WebURL& iconURL);
|
| BLINK_PLATFORM_EXPORT WebCredential(const WebCredential&);
|
| virtual ~WebCredential() { reset(); }
|
|
|
| @@ -25,9 +25,12 @@ public:
|
|
|
| BLINK_PLATFORM_EXPORT WebString id() const;
|
| BLINK_PLATFORM_EXPORT WebString name() const;
|
| - BLINK_PLATFORM_EXPORT WebURL avatarURL() const;
|
| + BLINK_PLATFORM_EXPORT WebURL iconURL() const;
|
| BLINK_PLATFORM_EXPORT WebString type() const;
|
|
|
| + // TODO(mkwst): Drop this once Chromium is updated. https://crbug.com/494880
|
| + BLINK_PLATFORM_EXPORT WebURL avatarURL() const { return iconURL(); }
|
| +
|
| BLINK_PLATFORM_EXPORT bool isPasswordCredential() const;
|
| BLINK_PLATFORM_EXPORT bool isFederatedCredential() const;
|
|
|
|
|