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

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

Issue 2284473002: Move WebSocketHandleImpl into Blink (take 2) (Closed)
Patch Set: Rebase Created 4 years, 3 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
« no previous file with comments | « content/renderer/BUILD.gn ('k') | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 580 matching lines...) Expand 10 before | Expand all | Expand 10 after
591 int count, 591 int count,
592 bool final_update) override; 592 bool final_update) override;
593 void reportFindInPageSelection(int request_id, 593 void reportFindInPageSelection(int request_id,
594 int active_match_ordinal, 594 int active_match_ordinal,
595 const blink::WebRect& sel) override; 595 const blink::WebRect& sel) override;
596 void requestStorageQuota(blink::WebStorageQuotaType type, 596 void requestStorageQuota(blink::WebStorageQuotaType type,
597 unsigned long long requested_size, 597 unsigned long long requested_size,
598 blink::WebStorageQuotaCallbacks callbacks) override; 598 blink::WebStorageQuotaCallbacks callbacks) override;
599 blink::WebPushClient* pushClient() override; 599 blink::WebPushClient* pushClient() override;
600 blink::WebPresentationClient* presentationClient() override; 600 blink::WebPresentationClient* presentationClient() override;
601 void willOpenWebSocket(blink::WebSocketHandle* handle) override;
602 void willStartUsingPeerConnectionHandler( 601 void willStartUsingPeerConnectionHandler(
603 blink::WebRTCPeerConnectionHandler* handler) override; 602 blink::WebRTCPeerConnectionHandler* handler) override;
604 blink::WebUserMediaClient* userMediaClient() override; 603 blink::WebUserMediaClient* userMediaClient() override;
605 blink::WebEncryptedMediaClient* encryptedMediaClient() override; 604 blink::WebEncryptedMediaClient* encryptedMediaClient() override;
606 blink::WebString userAgentOverride() override; 605 blink::WebString userAgentOverride() override;
607 blink::WebString doNotTrackValue() override; 606 blink::WebString doNotTrackValue() override;
608 bool allowWebGL(bool default_value) override; 607 bool allowWebGL(bool default_value) override;
609 blink::WebScreenOrientationClient* webScreenOrientationClient() override; 608 blink::WebScreenOrientationClient* webScreenOrientationClient() override;
610 bool isControlledByServiceWorker(blink::WebDataSource& data_source) override; 609 bool isControlledByServiceWorker(blink::WebDataSource& data_source) override;
611 int64_t serviceWorkerID(blink::WebDataSource& data_source) override; 610 int64_t serviceWorkerID(blink::WebDataSource& data_source) override;
(...skipping 665 matching lines...) Expand 10 before | Expand all | Expand 10 after
1277 bool has_accessed_initial_document_; 1276 bool has_accessed_initial_document_;
1278 1277
1279 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; 1278 base::WeakPtrFactory<RenderFrameImpl> weak_factory_;
1280 1279
1281 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); 1280 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl);
1282 }; 1281 };
1283 1282
1284 } // namespace content 1283 } // namespace content
1285 1284
1286 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 1285 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
OLDNEW
« no previous file with comments | « content/renderer/BUILD.gn ('k') | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698