// 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 CONTENT_PUBLIC_BROWSER_RENDER_PROCESS_HOST_CREATION_OBSERVER_H_ #define CONTENT_PUBLIC_BROWSER_RENDER_PROCESS_HOST_CREATION_OBSERVER_H_ #include "content/common/content_export.h" namespace content { class RenderProcessHost; struct ChildProcessTerminationInfo; // An observer that gets notified any time a new RenderProcessHost is created. // This can only be used on the UI thread. class CONTENT_EXPORT RenderProcessHostCreationObserver { … }; } // namespace content #endif // CONTENT_PUBLIC_BROWSER_RENDER_PROCESS_HOST_CREATION_OBSERVER_H_