blob: a26ce66fdc5f9d760a70c4a28165f808b892b447 [file] [log] [blame]
/*
* Copyright 2014 Google Inc. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef COBALT_DOM_HTML_LINK_ELEMENT_H_
#define COBALT_DOM_HTML_LINK_ELEMENT_H_
#include <string>
#include "base/memory/scoped_ptr.h"
#include "base/threading/thread_checker.h"
#include "cobalt/dom/html_element.h"
#include "cobalt/loader/fetcher_factory.h"
#include "cobalt/loader/loader.h"
#include "cobalt/loader/text_decoder.h"
namespace cobalt {
namespace dom {
class Document;
// The link element allows authors to link their document to other resources.
// https://www.w3.org/TR/html5/document-metadata.html#the-link-element
class HTMLLinkElement : public HTMLElement {
public:
static const char kTagName[];
explicit HTMLLinkElement(Document* document)
: HTMLElement(document, base::Token(kTagName)) {}
// Web API: HTMLLinkElement
//
std::string rel() const { return GetAttribute("rel").value_or(""); }
void set_rel(const std::string& value) { SetAttribute("rel", value); }
std::string type() const { return GetAttribute("type").value_or(""); }
void set_type(const std::string& value) { SetAttribute("type", value); }
std::string href() const { return GetAttribute("href").value_or(""); }
void set_href(const std::string& value) { SetAttribute("href", value); }
// Custom, not in any spec.
//
scoped_refptr<HTMLLinkElement> AsHTMLLinkElement() OVERRIDE { return this; }
// From Node.
void OnInsertedIntoDocument() OVERRIDE;
DEFINE_WRAPPABLE_TYPE(HTMLLinkElement);
private:
~HTMLLinkElement() OVERRIDE {}
void ResolveAndSetAbsoluteURL();
// From the spec: HTMLLinkElement.
void Obtain();
void OnLoadingDone(const std::string& content);
void OnLoadingError(const std::string& error);
// Thread checker ensures all calls to DOM element are made from the same
// thread that it is created in.
base::ThreadChecker thread_checker_;
// The loader.
scoped_ptr<loader::Loader> loader_;
// Absolute link url.
GURL absolute_url_;
};
} // namespace dom
} // namespace cobalt
#endif // COBALT_DOM_HTML_LINK_ELEMENT_H_