Revert 268405 "Make sure that ScratchBuffer::Allocate() always r..."
[chromium-blink-merge.git] / content / browser / renderer_host / pepper / pepper_browser_font_singleton_host.h
blobc002e634c9124ed754333f669d2bf20cfb9b059d
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CONTENT_BROWSER_RENDERER_HOST_PEPPER_PEPPER_BROWSER_FONT_SINGLETON_HOST_H_
6 #define CONTENT_BROWSER_RENDERER_HOST_PEPPER_PEPPER_BROWSER_FONT_SINGLETON_HOST_H_
8 #include "base/basictypes.h"
9 #include "ppapi/host/resource_host.h"
11 namespace content {
13 class BrowserPpapiHost;
15 class PepperBrowserFontSingletonHost : public ppapi::host::ResourceHost {
16 public:
17 PepperBrowserFontSingletonHost(BrowserPpapiHost* host,
18 PP_Instance instance,
19 PP_Resource resource);
20 virtual ~PepperBrowserFontSingletonHost();
22 private:
23 DISALLOW_COPY_AND_ASSIGN(PepperBrowserFontSingletonHost);
26 } // namespace content
28 #endif // CONTENT_BROWSER_RENDERER_HOST_PEPPER_PEPPER_BROWSER_FONT_SINGLETON_HOST_H_