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

Unified Diff: ppapi/cpp/private/flash_net_connector.h

Issue 9836131: Remove PPB_Flash_NetConnector and ENABLE_FLAPPER_HACKS. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 9 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 | « ppapi/c/private/ppb_flash_net_connector.h ('k') | ppapi/cpp/private/flash_net_connector.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/cpp/private/flash_net_connector.h
diff --git a/ppapi/cpp/private/flash_net_connector.h b/ppapi/cpp/private/flash_net_connector.h
deleted file mode 100644
index eb064ba642048b26fdfdddb9c8829b820a9f96c3..0000000000000000000000000000000000000000
--- a/ppapi/cpp/private/flash_net_connector.h
+++ /dev/null
@@ -1,38 +0,0 @@
-// Copyright (c) 2011 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_CPP_PRIVATE_FLASH_NET_CONNECTOR_H_
-#define PPAPI_CPP_PRIVATE_FLASH_NET_CONNECTOR_H_
-
-#include "ppapi/c/private/ppb_flash_net_connector.h"
-#include "ppapi/cpp/resource.h"
-
-namespace pp {
-
-class CompletionCallback;
-class InstanceHandle;
-
-namespace flash {
-
-class NetConnector : public Resource {
- public:
- explicit NetConnector(const InstanceHandle& instance);
-
- int32_t ConnectTcp(const char* host,
- uint16_t port,
- PP_FileHandle* socket_out,
- PP_NetAddress_Private* local_addr_out,
- PP_NetAddress_Private* remote_addr_out,
- const CompletionCallback& cc);
- int32_t ConnectTcpAddress(const PP_NetAddress_Private* addr,
- PP_FileHandle* socket_out,
- PP_NetAddress_Private* local_addr_out,
- PP_NetAddress_Private* remote_addr_out,
- const CompletionCallback& cc);
-};
-
-} // namespace flash
-} // namespace pp
-
-#endif // PPAPI_CPP_PRIVATE_FLASH_NET_CONNECTOR_H_
« no previous file with comments | « ppapi/c/private/ppb_flash_net_connector.h ('k') | ppapi/cpp/private/flash_net_connector.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698