| Index: public/platform/WebCredential.h
|
| diff --git a/public/platform/WebCredential.h b/public/platform/WebCredential.h
|
| index 46648b9f4070ca8cbee6a259ed7e8e5861044bfa..f40a3c159226da1d00bcfa0e8d69420d2f6b4884 100644
|
| --- a/public/platform/WebCredential.h
|
| +++ b/public/platform/WebCredential.h
|
| @@ -28,9 +28,12 @@ public:
|
| BLINK_PLATFORM_EXPORT WebURL avatarURL() const;
|
| BLINK_PLATFORM_EXPORT WebString type() const;
|
|
|
| - BLINK_PLATFORM_EXPORT bool isLocalCredential() const;
|
| + BLINK_PLATFORM_EXPORT bool isPasswordCredential() const;
|
| BLINK_PLATFORM_EXPORT bool isFederatedCredential() const;
|
|
|
| + // TODO(mkwst): Drop this once Chromium is updated. https://crbug.com/494880
|
| + BLINK_PLATFORM_EXPORT bool isLocalCredential() const { return isPasswordCredential(); }
|
| +
|
| #if INSIDE_BLINK
|
| BLINK_PLATFORM_EXPORT static WebCredential create(PlatformCredential*);
|
| BLINK_PLATFORM_EXPORT WebCredential& operator=(PlatformCredential*);
|
|
|