blob: a247b3c1aa320cdca55cc9d8ab4421cb604c8b03 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// 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.
#include "content/renderer/content_renderer_client.h"
namespace content {
SkBitmap* ContentRendererClient::GetSadPluginBitmap() {
return NULL;
}
std::string ContentRendererClient::GetDefaultEncoding() {
return std::string();
}
} // namespace content
|