// Copyright 2012 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_RENDERER_RENDER_THREAD_OBSERVER_H_ #define CONTENT_PUBLIC_RENDERER_RENDER_THREAD_OBSERVER_H_ #include "content/common/buildflags.h" #include "content/common/content_export.h" namespace blink { class AssociatedInterfaceRegistry; } #if BUILDFLAG(CONTENT_ENABLE_LEGACY_IPC) namespace IPC { class Message; } #endif namespace content { // Base class for objects that want to filter control IPC messages and get // notified of events. class CONTENT_EXPORT RenderThreadObserver { … }; } // namespace content #endif // CONTENT_PUBLIC_RENDERER_RENDER_THREAD_OBSERVER_H_