blob: 8ee451404ccfcf7c3bfb1444b8a9b64547c465df (
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
|
// 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_BROWSER_WORKER_HOST_WORKER_SERVICE_OBSERVER_H_
#define CONTENT_BROWSER_WORKER_HOST_WORKER_SERVICE_OBSERVER_H_
#pragma once
#include "content/browser/worker_host/worker_process_host.h"
class WorkerServiceObserver {
public:
virtual void WorkerCreated(
WorkerProcessHost* process,
const WorkerProcessHost::WorkerInstance& instance) = 0;
virtual void WorkerDestroyed(
WorkerProcessHost* process,
const WorkerProcessHost::WorkerInstance& instance) = 0;
virtual void WorkerContextStarted(
WorkerProcessHost* process,
int worker_route_id) = 0;
protected:
virtual ~WorkerServiceObserver() {}
};
#endif // CONTENT_BROWSER_WORKER_HOST_WORKER_SERVICE_OBSERVER_H_
|