diff options
author | raymes@chromium.org <raymes@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-12-26 23:25:56 +0000 |
---|---|---|
committer | raymes@chromium.org <raymes@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-12-26 23:25:56 +0000 |
commit | d9748993cd08309a613c974ef2483cca25e3d3fc (patch) | |
tree | 9141a39c468339f48cdd046af91833cc081f7212 /ppapi/proxy/ppb_flash_proxy.h | |
parent | 01d0ffd45589ad3470c6a168f68e7362f311c503 (diff) | |
download | chromium_src-d9748993cd08309a613c974ef2483cca25e3d3fc.zip chromium_src-d9748993cd08309a613c974ef2483cca25e3d3fc.tar.gz chromium_src-d9748993cd08309a613c974ef2483cca25e3d3fc.tar.bz2 |
Remove the old PPB_Flash proxy.
This removes the old, unused PPB_Flash proxy and related code.
BUG=
TBR=brettw
Review URL: https://chromiumcodereview.appspot.com/11633034
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@174646 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/proxy/ppb_flash_proxy.h')
-rw-r--r-- | ppapi/proxy/ppb_flash_proxy.h | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/ppapi/proxy/ppb_flash_proxy.h b/ppapi/proxy/ppb_flash_proxy.h deleted file mode 100644 index 89fcb6e..0000000 --- a/ppapi/proxy/ppb_flash_proxy.h +++ /dev/null @@ -1,54 +0,0 @@ -// 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 PPAPI_PROXY_PPB_FLASH_PROXY_H_ -#define PPAPI_PROXY_PPB_FLASH_PROXY_H_ - -#include <string> - -#include "base/compiler_specific.h" -#include "ppapi/c/pp_bool.h" -#include "ppapi/c/pp_instance.h" -#include "ppapi/c/pp_module.h" -#include "ppapi/c/private/ppb_flash.h" -#include "ppapi/proxy/interface_proxy.h" -#include "ppapi/proxy/serialized_var.h" -#include "ppapi/shared_impl/host_resource.h" -#include "ppapi/thunk/ppb_flash_api.h" - -struct PPB_Flash_Print_1_0; - -namespace ppapi { - -struct URLRequestInfoData; - -namespace proxy { - -struct PPBFlash_DrawGlyphs_Params; -struct SerializedDirEntry; -class SerializedVarReturnValue; - -/////////////////////////// WARNING:DEPRECTATED //////////////////////////////// -// Please do not add any new functions to this proxy. They should be -// implemented in the new-style resource proxy (see flash_resource.h). -// TODO(raymes): All of these functions should be moved to the new-style proxy. -//////////////////////////////////////////////////////////////////////////////// -class PPB_Flash_Proxy : public InterfaceProxy, public thunk::PPB_Flash_API { - public: - explicit PPB_Flash_Proxy(Dispatcher* dispatcher); - virtual ~PPB_Flash_Proxy(); - - // InterfaceProxy implementation. - virtual bool OnMessageReceived(const IPC::Message& msg); - - static const ApiID kApiID = API_ID_PPB_FLASH; - - private: - DISALLOW_COPY_AND_ASSIGN(PPB_Flash_Proxy); -}; - -} // namespace proxy -} // namespace ppapi - -#endif // PPAPI_PROXY_PPB_FLASH_PROXY_H_ |