
The methodology used to generate this CL is documented in https://crbug.com/1098010#c95. No-Try: true Bug: 1098010 Change-Id: I6ae92e5d7ccbf73b176588124b2f8b4067f805b3 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/3900575 Reviewed-by: Mark Mentovai <mark@chromium.org> Owners-Override: Avi Drissman <avi@chromium.org> Commit-Queue: Avi Drissman <avi@chromium.org> Auto-Submit: Avi Drissman <avi@chromium.org> Cr-Commit-Position: refs/heads/main@{#1047628}
45 lines
1.3 KiB
C++
45 lines
1.3 KiB
C++
// Copyright 2012 The Chromium Authors
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#ifndef PPAPI_PROXY_BROWSER_FONT_SINGLETON_RESOURCE_H_
|
|
#define PPAPI_PROXY_BROWSER_FONT_SINGLETON_RESOURCE_H_
|
|
|
|
#include "ppapi/proxy/connection.h"
|
|
#include "ppapi/proxy/plugin_resource.h"
|
|
#include "ppapi/thunk/ppb_browser_font_singleton_api.h"
|
|
|
|
namespace ppapi {
|
|
namespace proxy {
|
|
|
|
// This handles the singleton calls (that don't take a PP_Resource parameter)
|
|
// on the browser font interface
|
|
class BrowserFontSingletonResource
|
|
: public PluginResource,
|
|
public thunk::PPB_BrowserFont_Singleton_API {
|
|
public:
|
|
BrowserFontSingletonResource(Connection connection, PP_Instance instance);
|
|
|
|
BrowserFontSingletonResource(const BrowserFontSingletonResource&) = delete;
|
|
BrowserFontSingletonResource& operator=(const BrowserFontSingletonResource&) =
|
|
delete;
|
|
|
|
~BrowserFontSingletonResource() override;
|
|
|
|
// Resource override.
|
|
thunk::PPB_BrowserFont_Singleton_API*
|
|
AsPPB_BrowserFont_Singleton_API() override;
|
|
|
|
// thunk::PPB_BrowserFontSingleton_API implementation.
|
|
PP_Var GetFontFamilies(PP_Instance instance) override;
|
|
|
|
private:
|
|
// Lazily-filled-in list of font families.
|
|
std::string families_;
|
|
};
|
|
|
|
} // namespace proxy
|
|
} // namespace ppapi
|
|
|
|
#endif // PPAPI_PROXY_BROWSER_FONT_SINGLETON_RESOURCE_H_
|