// Copyright 2013 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_OBSERVER_H_ #define CONTENT_PUBLIC_BROWSER_RENDER_PROCESS_HOST_OBSERVER_H_ #include "base/observer_list_types.h" #include "base/process/kill.h" #include "base/process/process_handle.h" #include "content/common/content_export.h" namespace content { class RenderProcessHost; struct ChildProcessTerminationInfo; // An observer API implemented by classes which are interested // in RenderProcessHost lifecycle events. Note that this does not allow // observing the creation of a RenderProcessHost. There is a separate observer // for that: RenderProcessHostCreationObserver. class CONTENT_EXPORT RenderProcessHostObserver : public base::CheckedObserver { … }; } // namespace content #endif // CONTENT_PUBLIC_BROWSER_RENDER_PROCESS_HOST_OBSERVER_H_