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

Unified Diff: third_party/WebKit/Source/modules/credentialmanager/FederatedCredential.h

Issue 1723583004: CREDENTIAL: Convert federations from URLs to origins throughout. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: iOS2 Created 4 years, 10 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: third_party/WebKit/Source/modules/credentialmanager/FederatedCredential.h
diff --git a/third_party/WebKit/Source/modules/credentialmanager/FederatedCredential.h b/third_party/WebKit/Source/modules/credentialmanager/FederatedCredential.h
index c52e769b222dc202def2efd7d49ef8d62e5f676e..c4b9657a04c3844015969e1b94bb4879e35c132f 100644
--- a/third_party/WebKit/Source/modules/credentialmanager/FederatedCredential.h
+++ b/third_party/WebKit/Source/modules/credentialmanager/FederatedCredential.h
@@ -23,10 +23,10 @@ public:
static FederatedCredential* create(WebFederatedCredential*);
// FederatedCredential.idl
- const KURL& provider() const;
+ const String provider() const;
// TODO(mkwst): This is a stub, as we don't yet have any support on the Chromium-side.
- const String protocol() const { return String(); }
+ const String& protocol() const { return emptyString(); }
private:
FederatedCredential(WebFederatedCredential*);

Powered by Google App Engine
This is Rietveld 408576698