graph.cc 663 B

1234567891011121314151617181920212223
  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/graph.h"
  5. #include "base/dcheck_is_on.h"
  6. namespace performance_manager {
  7. Graph::Graph() = default;
  8. Graph::~Graph() = default;
  9. GraphObserver::GraphObserver() = default;
  10. GraphObserver::~GraphObserver() = default;
  11. GraphOwned::GraphOwned() = default;
  12. GraphOwned::~GraphOwned() = default;
  13. GraphOwnedDefaultImpl::GraphOwnedDefaultImpl() = default;
  14. GraphOwnedDefaultImpl::~GraphOwnedDefaultImpl() = default;
  15. } // namespace performance_manager