| // Copyright 2019 The Chromium Authors |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| #include "components/performance_manager/public/graph/frame_node.h" |
| |
| #include "components/performance_manager/graph/frame_node_impl.h" |
| |
| namespace performance_manager { |
| |
| // static |
| const char* FrameNode::kDefaultPriorityReason = |
| FrameNodeImpl::kDefaultPriorityReason; |
| |
| FrameNode::FrameNode() = default; |
| FrameNode::~FrameNode() = default; |
| |
| FrameNodeObserver::FrameNodeObserver() = default; |
| FrameNodeObserver::~FrameNodeObserver() = default; |
| |
| } // namespace performance_manager |