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

Unified Diff: public/platform/Platform.h

Issue 456293002: Credential manager: Introduce platform interface. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: feedback. Created 6 years, 4 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: public/platform/Platform.h
diff --git a/public/platform/Platform.h b/public/platform/Platform.h
index 4d134682a7b54a4d73459985428b32b6cb390f3c..fd7dd7fd632435fea77432a93a424f60e08d11c7 100644
--- a/public/platform/Platform.h
+++ b/public/platform/Platform.h
@@ -66,6 +66,7 @@ class WebClipboard;
class WebCompositorSupport;
class WebConvertableToTraceFormat;
class WebCookieJar;
+class WebCredentialManager;
class WebCrypto;
class WebDatabaseObserver;
class WebDiscardableMemory;
@@ -170,6 +171,9 @@ public:
// Must return non-null.
virtual WebBlobRegistry* blobRegistry() { return 0; }
+ // Credential Management -----------------------------------------------
+
+ virtual WebCredentialManager* credentialManager() { return 0; }
// Database ------------------------------------------------------------

Powered by Google App Engine
This is Rietveld 408576698