Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2090)

Unified Diff: Source/modules/credentialmanager/Credential.h

Issue 573663002: Credential Manager: Wire up the client. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Null check. Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/modules/credentialmanager/Credential.h
diff --git a/Source/modules/credentialmanager/Credential.h b/Source/modules/credentialmanager/Credential.h
index 1561eaefcb267b44c75ed08a112a799a34485975..5e195eeb27e3c6812c47b188bad14dd27b3f0bd9 100644
--- a/Source/modules/credentialmanager/Credential.h
+++ b/Source/modules/credentialmanager/Credential.h
@@ -29,8 +29,10 @@ public:
virtual void trace(Visitor*);
+ PlatformCredential* platformCredential() const { return m_platformCredential; }
+
protected:
- explicit Credential(PlatformCredential*);
+ Credential(PlatformCredential*);
Credential(const String& id, const String& name, const KURL& avatar);
// Parses a string as a KURL. Throws an exception via |exceptionState| if an invalid URL is produced.

Powered by Google App Engine
This is Rietveld 408576698