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
   32
   33
   34
   35
   36
   37
   38
   39
   40
   41
   42
   43
   44
   45
   46
   47
   48
   49
   50
   51

content / public / renderer / render_thread_observer.h [blame]

// 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 {
 public:
  RenderThreadObserver() {}

  RenderThreadObserver(const RenderThreadObserver&) = delete;
  RenderThreadObserver& operator=(const RenderThreadObserver&) = delete;

  virtual ~RenderThreadObserver() {}

  // Allows handling incoming Mojo requests.
  virtual void RegisterMojoInterfaces(
      blink::AssociatedInterfaceRegistry* associated_interfaces) {}
  virtual void UnregisterMojoInterfaces(
      blink::AssociatedInterfaceRegistry* associated_interfaces) {}

#if BUILDFLAG(CONTENT_ENABLE_LEGACY_IPC)
  // Allows filtering of control messages.
  virtual bool OnControlMessageReceived(const IPC::Message& message);
#endif

  // Called when the renderer cache of the plugin list has changed.
  virtual void PluginListChanged() {}
};

}  // namespace content

#endif  // CONTENT_PUBLIC_RENDERER_RENDER_THREAD_OBSERVER_H_