blob: 4c94f3123bf13ace5ca4a5c6a7a8b493970a548b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
// 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_CONTENT_RENDERER_CLIENT_H_
#define CONTENT_RENDERER_CONTENT_RENDERER_CLIENT_H_
#pragma once
#include "content/common/content_client.h"
class SkBitmap;
namespace content {
// Embedder API for participating in renderer logic.
class ContentRendererClient {
public:
virtual SkBitmap* GetSadPluginBitmap() { return NULL; }
};
} // namespace content
#endif // CONTENT_RENDERER_CONTENT_RENDERER_CLIENT_H_
|