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

Unified Diff: extensions/browser/api/socket/socket_api.h

Issue 76403004: An implementation of chrome.socket.secure(). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Morning LKGR Rebase. Created 6 years, 5 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 | « extensions/browser/api/socket/socket.h ('k') | extensions/browser/api/socket/socket_api.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/browser/api/socket/socket_api.h
diff --git a/extensions/browser/api/socket/socket_api.h b/extensions/browser/api/socket/socket_api.h
index cd93f7ac8c745f9109cd45b6cfeff214d7097af5..007f4436250c7d19ce5680c165cc9bc50a333464 100644
--- a/extensions/browser/api/socket/socket_api.h
+++ b/extensions/browser/api/socket/socket_api.h
@@ -24,10 +24,12 @@ class ResourceContext;
namespace net {
class IOBuffer;
+class URLRequestContextGetter;
+class SSLClientSocket;
}
namespace extensions {
-
+class TLSSocket;
class Socket;
// A simple interface to ApiResourceManager<Socket> or derived class. The goal
@@ -42,6 +44,9 @@ class SocketResourceManagerInterface {
virtual int Add(Socket* socket) = 0;
virtual Socket* Get(const std::string& extension_id, int api_resource_id) = 0;
virtual void Remove(const std::string& extension_id, int api_resource_id) = 0;
+ virtual void Replace(const std::string& extension_id,
+ int api_resource_id,
+ Socket* socket) = 0;
virtual base::hash_set<int>* GetResourceIds(
const std::string& extension_id) = 0;
};
@@ -73,6 +78,12 @@ class SocketResourceManager : public SocketResourceManagerInterface {
return manager_->Get(extension_id, api_resource_id);
}
+ virtual void Replace(const std::string& extension_id,
+ int api_resource_id,
+ Socket* socket) OVERRIDE {
+ manager_->Replace(extension_id, api_resource_id, static_cast<T*>(socket));
+ }
+
virtual void Remove(const std::string& extension_id,
int api_resource_id) OVERRIDE {
manager_->Remove(extension_id, api_resource_id);
@@ -103,6 +114,7 @@ class SocketAsyncApiFunction : public AsyncApiFunction {
int AddSocket(Socket* socket);
Socket* GetSocket(int api_resource_id);
+ void ReplaceSocket(int api_resource_id, Socket* socket);
void RemoveSocket(int api_resource_id);
base::hash_set<int>* GetSocketIds();
@@ -502,6 +514,29 @@ class SocketGetJoinedGroupsFunction : public SocketAsyncApiFunction {
private:
scoped_ptr<core_api::socket::GetJoinedGroups::Params> params_;
};
+
+class SocketSecureFunction : public SocketAsyncApiFunction {
+ public:
+ DECLARE_EXTENSION_FUNCTION("socket.secure", SOCKET_SECURE);
+ SocketSecureFunction();
+
+ protected:
+ virtual ~SocketSecureFunction();
+
+ // AsyncApiFunction
+ virtual bool Prepare() OVERRIDE;
+ virtual void AsyncWorkStart() OVERRIDE;
+
+ private:
+ // Callback from TLSSocket::UpgradeSocketToTLS().
+ void TlsConnectDone(scoped_ptr<TLSSocket> socket, int result);
+
+ scoped_ptr<core_api::socket::Secure::Params> params_;
+ scoped_refptr<net::URLRequestContextGetter> url_request_getter_;
+
+ DISALLOW_COPY_AND_ASSIGN(SocketSecureFunction);
+};
+
} // namespace extensions
#endif // EXTENSIONS_BROWSER_API_SOCKET_SOCKET_API_H_
« no previous file with comments | « extensions/browser/api/socket/socket.h ('k') | extensions/browser/api/socket/socket_api.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698