blob: 1a412884577216c4efeb322fd7b2462557aedd88 [file] [log] [blame]
Leonard Greye4ae34d2018-02-16 17:34:291// Copyright 2018 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
Illia Martyniukf688acd62018-04-02 19:26:075#include "components/ui_devtools/root_element.h"
Leonard Greye4ae34d2018-02-16 17:34:296
7#include "components/ui_devtools/Protocol.h"
Illia Martyniukf688acd62018-04-02 19:26:078#include "components/ui_devtools/ui_element_delegate.h"
Leonard Greye4ae34d2018-02-16 17:34:299
10namespace ui_devtools {
11
12RootElement::RootElement(UIElementDelegate* ui_element_delegate)
13 : UIElement(UIElementType::ROOT, ui_element_delegate, nullptr) {}
14
15RootElement::~RootElement() {}
16
17std::vector<std::pair<std::string, std::string>>
18RootElement::GetCustomProperties() const {
19 NOTREACHED();
20 return {};
21}
22
23void RootElement::GetBounds(gfx::Rect* bounds) const {
24 NOTREACHED();
25}