blob: 9733e6b2c04d16efef790e9f2059b2739112e74c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
// Copyright (c) 2012 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 WEBKIT_PLUGINS_PPAPI_PPB_FLASH_IMPL_H_
#define WEBKIT_PLUGINS_PPAPI_PPB_FLASH_IMPL_H_
#include "base/basictypes.h"
#include "build/build_config.h"
#include "ppapi/c/pp_point.h"
#include "ppapi/c/pp_rect.h"
#include "ppapi/c/private/ppb_flash.h"
namespace webkit {
namespace ppapi {
class PPB_Flash_Impl {
public:
// Returns a pointer to the interface implementing PPB_Flash that is
// exposed to the plugin.
static const PPB_Flash_11* GetInterface11();
static const PPB_Flash_12_0* GetInterface12_0();
static const PPB_Flash_12_1* GetInterface12_1();
private:
DISALLOW_COPY_AND_ASSIGN(PPB_Flash_Impl);
};
} // namespace ppapi
} // namespace webkit
#endif // WEBKIT_PLUGINS_PPAPI_PPB_FLASH_IMPL_H_
|