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

Unified Diff: webkit/plugins/ppapi/ppb_flash_impl.h

Issue 6578007: PPB_Flash cleanup part 1: move the net connector stuff to its own files. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/ppapi/proxy
Patch Set: merged ToT Created 9 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webkit/plugins/ppapi/plugin_module.cc ('k') | webkit/plugins/ppapi/ppb_flash_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/plugins/ppapi/ppb_flash_impl.h
diff --git a/webkit/plugins/ppapi/ppb_flash_impl.h b/webkit/plugins/ppapi/ppb_flash_impl.h
index 8b02deefad5ba0e62fd84b7efbb05e3256432d51..45d04d0d1a371ec2fe8407ea13b0630cd00a80f4 100644
--- a/webkit/plugins/ppapi/ppb_flash_impl.h
+++ b/webkit/plugins/ppapi/ppb_flash_impl.h
@@ -6,13 +6,10 @@
#define WEBKIT_PLUGINS_PPAPI_PPB_FLASH_IMPL_H_
#include "base/basictypes.h"
-#include "base/ref_counted.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"
-#include "webkit/plugins/ppapi/callbacks.h"
-#include "webkit/plugins/ppapi/resource.h"
namespace webkit {
namespace ppapi {
@@ -43,47 +40,6 @@ class PPB_Flash_Impl {
DISALLOW_COPY_AND_ASSIGN(PPB_Flash_Impl);
};
-class PPB_Flash_NetConnector_Impl : public Resource {
- public:
- explicit PPB_Flash_NetConnector_Impl(PluginInstance* instance);
- virtual ~PPB_Flash_NetConnector_Impl();
-
- static const PPB_Flash_NetConnector* GetInterface();
-
- // Resource override.
- virtual PPB_Flash_NetConnector_Impl* AsPPB_Flash_NetConnector_Impl();
-
- // PPB_Flash_NetConnector implementation.
- int32_t ConnectTcp(const char* host,
- uint16_t port,
- PP_FileHandle* socket_out,
- PP_Flash_NetAddress* local_addr_out,
- PP_Flash_NetAddress* remote_addr_out,
- PP_CompletionCallback callback);
- int32_t ConnectTcpAddress(const PP_Flash_NetAddress* addr,
- PP_FileHandle* socket_out,
- PP_Flash_NetAddress* local_addr_out,
- PP_Flash_NetAddress* remote_addr_out,
- PP_CompletionCallback callback);
-
- // Called to complete |ConnectTcp()| and |ConnectTcpAddress()|.
- void CompleteConnectTcp(PP_FileHandle socket,
- const PP_Flash_NetAddress& local_addr,
- const PP_Flash_NetAddress& remote_addr);
-
- private:
- // Any pending callback (for |ConnectTcp()| or |ConnectTcpAddress()|).
- scoped_refptr<TrackedCompletionCallback> callback_;
-
- // Output buffers to be filled in when the callback is completed successfully
- // (|{local,remote}_addr_out| are optional and may be null).
- PP_FileHandle* socket_out_;
- PP_Flash_NetAddress* local_addr_out_;
- PP_Flash_NetAddress* remote_addr_out_;
-
- DISALLOW_COPY_AND_ASSIGN(PPB_Flash_NetConnector_Impl);
-};
-
} // namespace ppapi
} // namespace webkit
« no previous file with comments | « webkit/plugins/ppapi/plugin_module.cc ('k') | webkit/plugins/ppapi/ppb_flash_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698