1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23
   24
   25
   26
   27
   28
   29
   30
   31

content / browser / devtools / protocol / native_profiling_handler.cc [blame]

// Copyright 2021 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "content/browser/devtools/protocol/native_profiling_handler.h"

#include "content/browser/devtools/devtools_agent_host_impl.h"
#include "content/public/browser/profiling_utils.h"

namespace content {
namespace protocol {

NativeProfilingHandler::NativeProfilingHandler()
    : DevToolsDomainHandler(NativeProfiling::Metainfo::domainName) {}
NativeProfilingHandler::~NativeProfilingHandler() = default;

void NativeProfilingHandler::Wire(UberDispatcher* dispatcher) {
  frontend_ =
      std::make_unique<NativeProfiling::Frontend>(dispatcher->channel());
  NativeProfiling::Dispatcher::wire(dispatcher, this);
}

void NativeProfilingHandler::DumpProfilingDataOfAllProcesses(
    std::unique_ptr<DumpProfilingDataOfAllProcessesCallback> callback) {
  content::AskAllChildrenToDumpProfilingData(
      base::BindOnce(&DumpProfilingDataOfAllProcessesCallback::sendSuccess,
                     std::move(callback)));
}

}  // namespace protocol
}  // namespace content