Index: content/renderer/content_renderer_client.h |
=================================================================== |
--- content/renderer/content_renderer_client.h (revision 0) |
+++ content/renderer/content_renderer_client.h (revision 0) |
@@ -0,0 +1,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_ |
Property changes on: content\renderer\content_renderer_client.h |
___________________________________________________________________ |
Added: svn:eol-style |
+ LF |