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

Side by Side Diff: content/renderer/render_frame_impl.h

Issue 2224713002: Move WebSocketHandleImpl into Blink (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix issue w/ Java bindings missing a dependency Created 4 years, 4 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 unified diff | Download patch
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 5 #ifndef CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 587 matching lines...) Expand 10 before | Expand all | Expand 10 after
598 int count, 598 int count,
599 bool final_update) override; 599 bool final_update) override;
600 void reportFindInPageSelection(int request_id, 600 void reportFindInPageSelection(int request_id,
601 int active_match_ordinal, 601 int active_match_ordinal,
602 const blink::WebRect& sel) override; 602 const blink::WebRect& sel) override;
603 void requestStorageQuota(blink::WebStorageQuotaType type, 603 void requestStorageQuota(blink::WebStorageQuotaType type,
604 unsigned long long requested_size, 604 unsigned long long requested_size,
605 blink::WebStorageQuotaCallbacks callbacks) override; 605 blink::WebStorageQuotaCallbacks callbacks) override;
606 blink::WebPushClient* pushClient() override; 606 blink::WebPushClient* pushClient() override;
607 blink::WebPresentationClient* presentationClient() override; 607 blink::WebPresentationClient* presentationClient() override;
608 void willOpenWebSocket(blink::WebSocketHandle* handle) override;
609 void willStartUsingPeerConnectionHandler( 608 void willStartUsingPeerConnectionHandler(
610 blink::WebRTCPeerConnectionHandler* handler) override; 609 blink::WebRTCPeerConnectionHandler* handler) override;
611 blink::WebUserMediaClient* userMediaClient() override; 610 blink::WebUserMediaClient* userMediaClient() override;
612 blink::WebEncryptedMediaClient* encryptedMediaClient() override; 611 blink::WebEncryptedMediaClient* encryptedMediaClient() override;
613 blink::WebString userAgentOverride() override; 612 blink::WebString userAgentOverride() override;
614 blink::WebString doNotTrackValue() override; 613 blink::WebString doNotTrackValue() override;
615 bool allowWebGL(bool default_value) override; 614 bool allowWebGL(bool default_value) override;
616 blink::WebScreenOrientationClient* webScreenOrientationClient() override; 615 blink::WebScreenOrientationClient* webScreenOrientationClient() override;
617 bool isControlledByServiceWorker(blink::WebDataSource& data_source) override; 616 bool isControlledByServiceWorker(blink::WebDataSource& data_source) override;
618 int64_t serviceWorkerID(blink::WebDataSource& data_source) override; 617 int64_t serviceWorkerID(blink::WebDataSource& data_source) override;
(...skipping 665 matching lines...) Expand 10 before | Expand all | Expand 10 after
1284 mojom::FrameHostPtr frame_host_; 1283 mojom::FrameHostPtr frame_host_;
1285 1284
1286 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; 1285 base::WeakPtrFactory<RenderFrameImpl> weak_factory_;
1287 1286
1288 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); 1287 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl);
1289 }; 1288 };
1290 1289
1291 } // namespace content 1290 } // namespace content
1292 1291
1293 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 1292 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698