Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(9)

Side by Side Diff: webkit/plugins/ppapi/ppb_flash_impl.cc

Issue 11633034: Remove the old PPB_Flash proxy. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « webkit/plugins/ppapi/ppb_flash_impl.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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
OLDNEW
« no previous file with comments | « webkit/plugins/ppapi/ppb_flash_impl.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698