chromium/chrome/browser/ui/views/devtools_process_observer.h

// 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.

#ifndef CHROME_BROWSER_UI_VIEWS_DEVTOOLS_PROCESS_OBSERVER_H_
#define CHROME_BROWSER_UI_VIEWS_DEVTOOLS_PROCESS_OBSERVER_H_

#include "base/memory/raw_ptr.h"
#include "base/process/process.h"
#include "content/public/browser/browser_child_process_observer.h"

namespace ui_devtools {
class TracingAgent;
}

// Observer that is notified of browser and gpu processes when they are launched
// and destroyed. This is used to update the process id for event tracing.
class DevtoolsProcessObserver : public content::BrowserChildProcessObserver {};

#endif  // CHROME_BROWSER_UI_VIEWS_DEVTOOLS_PROCESS_OBSERVER_H_