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

Unified Diff: content/browser/websockets/websocket_impl.h

Issue 2119973002: Port WebSockets to Mojo IPC (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Cleanup Created 4 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
Index: content/browser/websockets/websocket_impl.h
diff --git a/content/browser/websockets/websocket_impl.h b/content/browser/websockets/websocket_impl.h
new file mode 100644
index 0000000000000000000000000000000000000000..2ff0a6f8c4d23738123e2ddff4e2c90295d2c9b9
--- /dev/null
+++ b/content/browser/websockets/websocket_impl.h
@@ -0,0 +1,111 @@
+// 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.
+
+#ifndef CONTENT_BROWSER_WEBSOCKETS_WEBSOCKET_IMPL_H_
+#define CONTENT_BROWSER_WEBSOCKETS_WEBSOCKET_IMPL_H_
+
+#include <stdint.h>
+
+#include <memory>
+#include <string>
+#include <vector>
+
+#include "base/macros.h"
+#include "base/memory/weak_ptr.h"
+#include "base/time/time.h"
+#include "content/common/content_export.h"
+#include "content/common/websocket.mojom.h"
+#include "mojo/public/cpp/bindings/binding.h"
+
+class GURL;
+
+namespace url {
+class Origin;
+} // namespace url
+
+namespace net {
+class WebSocketChannel;
+} // namespace net
+
+namespace content {
+class StoragePartition;
+
+// Host of net::WebSocketChannel.
+class CONTENT_EXPORT WebSocketImpl
+ : NON_EXPORTED_BASE(public mojom::WebSocket) {
+ public:
+ class Delegate {
+ public:
+ virtual ~Delegate() {}
+ virtual int GetClientProcessId() = 0;
+ virtual StoragePartition* GetStoragePartition() = 0;
+ virtual void OnReceivedResponseFromServer(WebSocketImpl* impl) = 0;
+ virtual void OnLostConnectionToClient(WebSocketImpl* impl) = 0;
+ };
+
+ WebSocketImpl(Delegate* delegate,
+ mojom::WebSocketRequest request,
+ base::TimeDelta delay);
+ ~WebSocketImpl() override;
+
+ // The renderer process is going away.
+ // This function is virtual for testing.
+ virtual void GoAway();
+
+ // mojom::WebSocket methods:
+ void AddChannelRequest(const GURL& url,
+ mojo::Array<mojo::String> requested_protocols,
+ const url::Origin& origin,
+ const GURL& first_party_for_cookies,
+ const mojo::String& user_agent_override,
+ int32_t render_frame_id,
+ mojom::WebSocketClientPtr client) override;
+ void SendFrame(bool fin, mojom::WebSocketMessageType type,
+ mojo::Array<uint8_t> data) override;
+ void SendFlowControl(int64_t quota) override;
+ void StartClosingHandshake(uint16_t code,
+ const mojo::String& reason) override;
+
+ bool handshake_succeeded() const { return handshake_succeeded_; }
+ void OnHandshakeSucceeded() { handshake_succeeded_ = true; }
+
+ protected:
+ class WebSocketEventHandler;
+
+ void OnConnectionError();
+ void AddChannel(const GURL& socket_url,
+ const std::vector<std::string>& requested_protocols,
+ const url::Origin& origin,
+ const GURL& first_party_for_cookies,
+ const std::string& user_agent_override,
+ int32_t render_frame_id);
+
+ Delegate* delegate_;
+ mojo::Binding<mojom::WebSocket> binding_;
+
+ mojom::WebSocketClientPtr client_;
+
+ // The channel we use to send events to the network.
+ std::unique_ptr<net::WebSocketChannel> channel_;
+
+ // Delay used for per-renderer WebSocket throttling.
+ base::TimeDelta delay_;
+
+ // SendFlowControl() is delayed when OnFlowControl() is called before
+ // AddChannel() is called.
+ // Zero indicates there is no pending SendFlowControl().
+ int64_t pending_flow_control_quota_;
+
+ // handshake_succeeded_ is set and used by WebSocketDispatcherHost
Adam Rice 2016/07/27 02:38:54 WebSocketManager?
+ // to manage counters for per-renderer WebSocket throttling.
+ bool handshake_succeeded_;
+
+ base::WeakPtrFactory<WebSocketImpl> weak_ptr_factory_;
+
+ DISALLOW_COPY_AND_ASSIGN(WebSocketImpl);
+};
+
+} // namespace content
+
+#endif // CONTENT_BROWSER_WEBSOCKETS_WEBSOCKET_IMPL_H_

Powered by Google App Engine
This is Rietveld 408576698