OLD | NEW |
| (Empty) |
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. | |
4 | |
5 #include "webkit/plugins/ppapi/ppb_flash_impl.h" | |
6 | |
7 #include <string> | |
8 | |
9 #include "googleurl/src/gurl.h" | |
10 #include "ppapi/c/private/ppb_flash.h" | |
11 #include "ppapi/c/trusted/ppb_browser_font_trusted.h" | |
12 #include "ppapi/shared_impl/time_conversion.h" | |
13 #include "ppapi/shared_impl/var.h" | |
14 #include "ppapi/thunk/enter.h" | |
15 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDocument.h" | |
16 #include "third_party/WebKit/Source/WebKit/chromium/public/WebElement.h" | |
17 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPluginContainer.h" | |
18 #include "webkit/plugins/ppapi/common.h" | |
19 #include "webkit/plugins/ppapi/host_globals.h" | |
20 #include "webkit/plugins/ppapi/plugin_delegate.h" | |
21 #include "webkit/plugins/ppapi/plugin_module.h" | |
22 #include "webkit/plugins/ppapi/ppapi_plugin_instance.h" | |
23 #include "webkit/plugins/ppapi/resource_helper.h" | |
24 | |
25 using ppapi::PPTimeToTime; | |
26 using ppapi::StringVar; | |
27 using ppapi::thunk::EnterResourceNoLock; | |
28 | |
29 namespace webkit { | |
30 namespace ppapi { | |
31 | |
32 PPB_Flash_Impl::PPB_Flash_Impl(PluginInstance* instance) { | |
33 } | |
34 | |
35 PPB_Flash_Impl::~PPB_Flash_Impl() { | |
36 } | |
37 | |
38 } // namespace ppapi | |
39 } // namespace webkit | |
OLD | NEW |