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

Unified Diff: third_party/WebKit/Source/platform/exported/WebCredential.cpp

Issue 1973943002: Fix style in Credential Manager code (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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
« no previous file with comments | « third_party/WebKit/Source/modules/credentialmanager/CredentialsContainer.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/platform/exported/WebCredential.cpp
diff --git a/third_party/WebKit/Source/platform/exported/WebCredential.cpp b/third_party/WebKit/Source/platform/exported/WebCredential.cpp
index 759f9fb48d15cfbc35683c06b2402c20e46ffa5c..79c8f3c40d07c6a51ca3d54cf263496bba76cc5c 100644
--- a/third_party/WebKit/Source/platform/exported/WebCredential.cpp
+++ b/third_party/WebKit/Source/platform/exported/WebCredential.cpp
@@ -14,11 +14,11 @@ namespace blink {
std::unique_ptr<WebCredential> WebCredential::create(PlatformCredential* credential)
{
if (credential->isPassword()) {
- return WTF::wrapUnique(new WebPasswordCredential(credential));
+ return wrapUnique(new WebPasswordCredential(credential));
}
if (credential->isFederated()) {
- return WTF::wrapUnique(new WebFederatedCredential(credential));
+ return wrapUnique(new WebFederatedCredential(credential));
}
ASSERT_NOT_REACHED();
« no previous file with comments | « third_party/WebKit/Source/modules/credentialmanager/CredentialsContainer.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698