diff options
Diffstat (limited to 'ppapi/shared_impl/ppb_flash_font_file_shared.h')
-rw-r--r-- | ppapi/shared_impl/ppb_flash_font_file_shared.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/ppapi/shared_impl/ppb_flash_font_file_shared.h b/ppapi/shared_impl/ppb_flash_font_file_shared.h new file mode 100644 index 0000000..85ec991 --- /dev/null +++ b/ppapi/shared_impl/ppb_flash_font_file_shared.h @@ -0,0 +1,19 @@ +// Copyright 2016 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 PPAPI_SHARED_IMPL_PPB_FLASH_FONT_FILE_SHARED_H_ +#define PPAPI_SHARED_IMPL_PPB_FLASH_FONT_FILE_SHARED_H_ + +#include "ppapi/c/pp_bool.h" + +namespace ppapi { + +class PPB_Flash_FontFile_Shared { + public: + static PP_Bool IsSupportedForWindows() { return PP_TRUE; } +}; + +} // namespace ppapi + +#endif // PPAPI_SHARED_IMPL_PPB_FLASH_FONT_FILE_SHARED_H_
\ No newline at end of file |