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

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

Issue 655253006: Remove old WebSocket implementation from content/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 6 years, 2 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 <vector> 8 #include <vector>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 419 matching lines...) Expand 10 before | Expand all | Expand 10 after
430 virtual void reportFindInPageMatchCount(int request_id, 430 virtual void reportFindInPageMatchCount(int request_id,
431 int count, 431 int count,
432 bool final_update); 432 bool final_update);
433 virtual void reportFindInPageSelection(int request_id, 433 virtual void reportFindInPageSelection(int request_id,
434 int active_match_ordinal, 434 int active_match_ordinal,
435 const blink::WebRect& sel); 435 const blink::WebRect& sel);
436 virtual void requestStorageQuota(blink::WebLocalFrame* frame, 436 virtual void requestStorageQuota(blink::WebLocalFrame* frame,
437 blink::WebStorageQuotaType type, 437 blink::WebStorageQuotaType type,
438 unsigned long long requested_size, 438 unsigned long long requested_size,
439 blink::WebStorageQuotaCallbacks callbacks); 439 blink::WebStorageQuotaCallbacks callbacks);
440 virtual void willOpenSocketStream(
441 blink::WebSocketStreamHandle* handle);
442 virtual void willOpenWebSocket(blink::WebSocketHandle* handle); 440 virtual void willOpenWebSocket(blink::WebSocketHandle* handle);
443 virtual blink::WebGeolocationClient* geolocationClient(); 441 virtual blink::WebGeolocationClient* geolocationClient();
444 virtual blink::WebPushClient* pushClient(); 442 virtual blink::WebPushClient* pushClient();
445 virtual void willStartUsingPeerConnectionHandler( 443 virtual void willStartUsingPeerConnectionHandler(
446 blink::WebLocalFrame* frame, 444 blink::WebLocalFrame* frame,
447 blink::WebRTCPeerConnectionHandler* handler); 445 blink::WebRTCPeerConnectionHandler* handler);
448 virtual blink::WebUserMediaClient* userMediaClient(); 446 virtual blink::WebUserMediaClient* userMediaClient();
449 virtual blink::WebMIDIClient* webMIDIClient(); 447 virtual blink::WebMIDIClient* webMIDIClient();
450 virtual bool willCheckAndDispatchMessageEvent( 448 virtual bool willCheckAndDispatchMessageEvent(
451 blink::WebLocalFrame* source_frame, 449 blink::WebLocalFrame* source_frame,
(...skipping 330 matching lines...) Expand 10 before | Expand all | Expand 10 after
782 #endif 780 #endif
783 781
784 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; 782 base::WeakPtrFactory<RenderFrameImpl> weak_factory_;
785 783
786 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); 784 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl);
787 }; 785 };
788 786
789 } // namespace content 787 } // namespace content
790 788
791 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 789 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
OLDNEW
« no previous file with comments | « content/ppapi_plugin/ppapi_blink_platform_impl.cc ('k') | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698