1 // Copyright 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #include "third_party/blink/renderer/core/html/html_time_element.h"
6 
7 #include "third_party/blink/renderer/core/dom/document.h"
8 #include "third_party/blink/renderer/core/frame/web_feature.h"
9 #include "third_party/blink/renderer/platform/instrumentation/use_counter.h"
10 
11 namespace blink {
12 
HTMLTimeElement(Document & document)13 HTMLTimeElement::HTMLTimeElement(Document& document)
14     : HTMLElement(html_names::kTimeTag, document) {
15   UseCounter::Count(document, WebFeature::kTimeElement);
16 }
17 
18 }  // namespace blink
19