Chromium Code Reviews| Index: public/platform/WebLocalCredential.h |
| diff --git a/public/platform/WebLocalCredential.h b/public/platform/WebLocalCredential.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..730e9052220e6ddfe02c1a1e9642107a520c5c2d |
| --- /dev/null |
| +++ b/public/platform/WebLocalCredential.h |
| @@ -0,0 +1,29 @@ |
| +// Copyright 2014 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef WebLocalCredential_h |
| +#define WebLocalCredential_h |
| + |
| +#include "WebCommon.h" |
| +#include "WebCredential.h" |
| +#include "WebPrivatePtr.h" |
|
sof
2014/08/10 05:54:57
Redundant #include.
Mike West
2014/08/11 07:56:50
Done.
|
| +#include "WebString.h" |
| + |
| +namespace blink { |
| + |
| +class WebLocalCredential : public WebCredential { |
| +public: |
| + BLINK_PLATFORM_EXPORT WebLocalCredential(const WebString& id, const WebString& name, const WebString& avatarURL, const WebString& password); |
| + |
| + BLINK_PLATFORM_EXPORT void assign(const WebLocalCredential&); |
| + |
| + BLINK_PLATFORM_EXPORT WebString password() const; |
| +}; |
| + |
| +} // namespace blink |
| + |
| +#endif // WebLocalCredential_h |
| + |
| + |
| + |