system_node.cc 687 B

1234567891011121314151617181920
  1. // Copyright 2019 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. #include "components/performance_manager/public/graph/system_node.h"
  5. #include "components/performance_manager/graph/system_node_impl.h"
  6. namespace performance_manager {
  7. SystemNode::SystemNode() = default;
  8. SystemNode::~SystemNode() = default;
  9. SystemNodeObserver::SystemNodeObserver() = default;
  10. SystemNodeObserver::~SystemNodeObserver() = default;
  11. SystemNode::ObserverDefaultImpl::ObserverDefaultImpl() = default;
  12. SystemNode::ObserverDefaultImpl::~ObserverDefaultImpl() = default;
  13. } // namespace performance_manager