blob: 452e77c899980763dc9756c063b0b2943f3c53cc [file] [log] [blame]
// 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.
#include "modules/credentialmanager/Credential.h"
#include "bindings/core/v8/ExceptionState.h"
#include "core/dom/ExceptionCode.h"
namespace blink {
Credential::~Credential() {}
Credential::Credential(PlatformCredential* credential)
: m_platformCredential(credential) {}
Credential::Credential(const String& id, const String& name, const KURL& icon)
: m_platformCredential(PlatformCredential::create(id, name, icon)) {}
KURL Credential::parseStringAsURL(const String& url,
ExceptionState& exceptionState) {
if (url.isEmpty())
return KURL();
KURL parsedURL = KURL(KURL(), url);
if (!parsedURL.isValid())
exceptionState.throwDOMException(SyntaxError,
"'" + url + "' is not a valid URL.");
return parsedURL;
}
DEFINE_TRACE(Credential) {
visitor->trace(m_platformCredential);
}
} // namespace blink