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

Unified Diff: ppapi/cpp/dev/tcp_socket_dev.cc

Issue 17314012: Move PPB_TCPSocket out of dev. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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/cpp/dev/tcp_socket_dev.h ('k') | ppapi/cpp/tcp_socket.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/cpp/dev/tcp_socket_dev.cc
diff --git a/ppapi/cpp/dev/tcp_socket_dev.cc b/ppapi/cpp/dev/tcp_socket_dev.cc
deleted file mode 100644
index 03628a8b397632ca6beb45a55d9d4e4b8a8cdac1..0000000000000000000000000000000000000000
--- a/ppapi/cpp/dev/tcp_socket_dev.cc
+++ /dev/null
@@ -1,117 +0,0 @@
-// Copyright 2013 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.
-
-#include "ppapi/cpp/dev/tcp_socket_dev.h"
-
-#include "ppapi/c/pp_errors.h"
-#include "ppapi/cpp/completion_callback.h"
-#include "ppapi/cpp/instance_handle.h"
-#include "ppapi/cpp/module_impl.h"
-
-namespace pp {
-
-namespace {
-
-template <> const char* interface_name<PPB_TCPSocket_Dev_0_1>() {
- return PPB_TCPSOCKET_DEV_INTERFACE_0_1;
-}
-
-} // namespace
-
-TCPSocket_Dev::TCPSocket_Dev() {
-}
-
-TCPSocket_Dev::TCPSocket_Dev(const InstanceHandle& instance) {
- if (has_interface<PPB_TCPSocket_Dev_0_1>()) {
- PassRefFromConstructor(get_interface<PPB_TCPSocket_Dev_0_1>()->Create(
- instance.pp_instance()));
- }
-}
-
-TCPSocket_Dev::TCPSocket_Dev(PassRef, PP_Resource resource)
- : Resource(PASS_REF, resource) {
-}
-
-TCPSocket_Dev::TCPSocket_Dev(const TCPSocket_Dev& other) : Resource(other) {
-}
-
-TCPSocket_Dev::~TCPSocket_Dev() {
-}
-
-TCPSocket_Dev& TCPSocket_Dev::operator=(const TCPSocket_Dev& other) {
- Resource::operator=(other);
- return *this;
-}
-
-// static
-bool TCPSocket_Dev::IsAvailable() {
- return has_interface<PPB_TCPSocket_Dev_0_1>();
-}
-
-int32_t TCPSocket_Dev::Connect(const NetAddress& addr,
- const CompletionCallback& callback) {
- if (has_interface<PPB_TCPSocket_Dev_0_1>()) {
- return get_interface<PPB_TCPSocket_Dev_0_1>()->Connect(
- pp_resource(), addr.pp_resource(), callback.pp_completion_callback());
- }
- return callback.MayForce(PP_ERROR_NOINTERFACE);
-}
-
-NetAddress TCPSocket_Dev::GetLocalAddress() const {
- if (has_interface<PPB_TCPSocket_Dev_0_1>()) {
- return NetAddress(
- PASS_REF,
- get_interface<PPB_TCPSocket_Dev_0_1>()->GetLocalAddress(pp_resource()));
- }
- return NetAddress();
-}
-
-NetAddress TCPSocket_Dev::GetRemoteAddress() const {
- if (has_interface<PPB_TCPSocket_Dev_0_1>()) {
- return NetAddress(
- PASS_REF,
- get_interface<PPB_TCPSocket_Dev_0_1>()->GetRemoteAddress(
- pp_resource()));
- }
- return NetAddress();
-}
-
-int32_t TCPSocket_Dev::Read(char* buffer,
- int32_t bytes_to_read,
- const CompletionCallback& callback) {
- if (has_interface<PPB_TCPSocket_Dev_0_1>()) {
- return get_interface<PPB_TCPSocket_Dev_0_1>()->Read(
- pp_resource(), buffer, bytes_to_read,
- callback.pp_completion_callback());
- }
- return callback.MayForce(PP_ERROR_NOINTERFACE);
-}
-
-int32_t TCPSocket_Dev::Write(const char* buffer,
- int32_t bytes_to_write,
- const CompletionCallback& callback) {
- if (has_interface<PPB_TCPSocket_Dev_0_1>()) {
- return get_interface<PPB_TCPSocket_Dev_0_1>()->Write(
- pp_resource(), buffer, bytes_to_write,
- callback.pp_completion_callback());
- }
- return callback.MayForce(PP_ERROR_NOINTERFACE);
-}
-
-void TCPSocket_Dev::Close() {
- if (has_interface<PPB_TCPSocket_Dev_0_1>())
- get_interface<PPB_TCPSocket_Dev_0_1>()->Close(pp_resource());
-}
-
-int32_t TCPSocket_Dev::SetOption(PP_TCPSocket_Option_Dev name,
- const Var& value,
- const CompletionCallback& callback) {
- if (has_interface<PPB_TCPSocket_Dev_0_1>()) {
- return get_interface<PPB_TCPSocket_Dev_0_1>()->SetOption(
- pp_resource(), name, value.pp_var(), callback.pp_completion_callback());
- }
- return callback.MayForce(PP_ERROR_NOINTERFACE);
-}
-
-} // namespace pp
« no previous file with comments | « ppapi/cpp/dev/tcp_socket_dev.h ('k') | ppapi/cpp/tcp_socket.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698