blob: a7a63a414e484f8d4bc698be50d5e0a3585ea71d (
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
|
// Copyright (c) 2011 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_RENDERER_RENDER_PROCESS_OBSERVER_H_
#define CONTENT_RENDERER_RENDER_PROCESS_OBSERVER_H_
#pragma once
#include "base/basictypes.h"
#include "ipc/ipc_message.h"
class GURL;
// Base class for objects that want to filter control IPC messages and get
// notified of events.
class RenderProcessObserver : public IPC::Message::Sender {
public:
RenderProcessObserver();
virtual ~RenderProcessObserver();
// IPC::Message::Sender
virtual bool Send(IPC::Message* message);
// 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();
// See WebViewClient::allowScriptExtension
virtual bool AllowScriptExtension(const std::string& v8_extension_name,
const GURL& url,
int extension_group);
virtual void IdleNotification();
private:
DISALLOW_COPY_AND_ASSIGN(RenderProcessObserver);
};
#endif // CONTENT_RENDERER_RENDER_PROCESS_OBSERVER_H_
|