blob: f53ba65f9ff4d49f5d159707753d8dd9d584b85b (
plain)
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
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// 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_PROCESS_OBSERVER_H_
#define CONTENT_PUBLIC_RENDERER_RENDER_PROCESS_OBSERVER_H_
#include "base/macros.h"
#include "content/common/content_export.h"
namespace IPC {
class Message;
}
namespace content {
// Base class for objects that want to filter control IPC messages and get
// notified of events.
class CONTENT_EXPORT RenderProcessObserver {
public:
RenderProcessObserver() {}
virtual ~RenderProcessObserver() {}
// Allows filtering of control messages.
virtual bool OnControlMessageReceived(const IPC::Message& message);
// Notification that the render process is shutting down.
virtual void OnRenderProcessShutdown() {}
// Called right after the WebKit API is initialized.
virtual void WebKitInitialized() {}
// Called when the renderer cache of the plugin list has changed.
virtual void PluginListChanged() {}
virtual void IdleNotification() {}
// Called when the network state changes.
virtual void NetworkStateChanged(bool online) {}
private:
DISALLOW_COPY_AND_ASSIGN(RenderProcessObserver);
};
} // namespace content
#endif // CONTENT_PUBLIC_RENDERER_RENDER_PROCESS_OBSERVER_H_
|