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

Unified Diff: webkit/glue/plugins/pepper_transport.cc

Issue 5828003: Move the Pepper implementation from webkit/glue/plugins/pepper_* to... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years 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/glue/plugins/pepper_transport.h ('k') | webkit/glue/plugins/pepper_url_loader.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/plugins/pepper_transport.cc
===================================================================
--- webkit/glue/plugins/pepper_transport.cc (revision 69381)
+++ webkit/glue/plugins/pepper_transport.cc (working copy)
@@ -1,144 +0,0 @@
-// Copyright (c) 2010 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 "webkit/glue/plugins/pepper_transport.h"
-
-#include "base/singleton.h"
-#include "base/thread_local.h"
-#include "ppapi/c/dev/ppb_transport_dev.h"
-#include "webkit/glue/plugins/pepper_common.h"
-#include "webkit/glue/plugins/pepper_plugin_instance.h"
-#include "webkit/glue/plugins/pepper_plugin_module.h"
-
-namespace pepper {
-
-namespace {
-
-// Creates a new transport object with the specified name
-// using the specified protocol.
-PP_Resource CreateTransport(PP_Module module,
- const char* name,
- const char* proto) {
- // TODO(juberti): implement me
- PP_Resource p(0);
- return p;
-}
-
-// Returns whether or not resource is Transport
-PP_Bool IsTransport(PP_Resource resource) {
- return BoolToPPBool(!!Resource::GetAs<Transport>(resource));
-}
-
-// Returns whether the transport is currently writable
-// (i.e. can send data to the remote peer)
-PP_Bool IsWritable(PP_Resource transport) {
- // TODO(juberti): impelement me
- return PP_FALSE;
-}
-
-
-// TODO(juberti): other getters/setters
-// connect state
-// connect type, protocol
-// RTT
-
-
-// Establishes a connection to the remote peer.
-// Returns PP_ERROR_WOULDBLOCK and notifies on |cb|
-// when connectivity is established (or timeout occurs).
-int32_t Connect(PP_Resource transport,
- PP_CompletionCallback cb) {
- // TODO(juberti): impelement me
- return 0;
-}
-
-
-// Obtains another ICE candidate address to be provided
-// to the remote peer. Returns PP_ERROR_WOULDBLOCK
-// if there are no more addresses to be sent.
-int32_t GetNextAddress(PP_Resource transport,
- PP_Var* address,
- PP_CompletionCallback cb) {
- // TODO(juberti): implement me
- return 0;
-}
-
-
-// Provides an ICE candidate address that was received
-// from the remote peer.
-int32_t ReceiveRemoteAddress(PP_Resource transport,
- PP_Var address) {
- // TODO(juberti): implement me
- return 0;
-}
-
-
-// Like recv(), receives data. Returns PP_ERROR_WOULDBLOCK
-// if there is currently no data to receive.
-int32_t Recv(PP_Resource transport,
- void* data,
- uint32_t len,
- PP_CompletionCallback cb) {
- // TODO(juberti): implement me
- return 0;
-}
-
-
-// Like send(), sends data. Returns PP_ERROR_WOULDBLOCK
-// if the socket is currently flow-controlled.
-int32_t Send(PP_Resource transport,
- const void* data,
- uint32_t len,
- PP_CompletionCallback cb) {
- // TODO(juberti): implement me
- return 0;
-}
-
-
-// Disconnects from the remote peer.
-int32_t Close(PP_Resource transport) {
- // TODO(juberti): implement me
- return 0;
-}
-
-
-const PPB_Transport_Dev ppb_transport = {
- &CreateTransport,
- &IsTransport,
- &IsWritable,
- &Connect,
- &GetNextAddress,
- &ReceiveRemoteAddress,
- &Recv,
- &Send,
- &Close,
-};
-
-} // namespace
-
-Transport::Transport(PluginModule* module)
- : Resource(module) {
- // TODO(juberti): impl
-}
-
-const PPB_Transport_Dev* Transport::GetInterface() {
- return &ppb_transport;
-}
-
-Transport::~Transport() {
- // TODO(juberti): teardown
-}
-
-Transport* Transport::AsTransport() {
- return this;
-}
-
-bool Transport::Init(const char* name,
- const char* proto) {
- // TODO(juberti): impl
- return false;
-}
-
-} // namespace pepper
-
« no previous file with comments | « webkit/glue/plugins/pepper_transport.h ('k') | webkit/glue/plugins/pepper_url_loader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698