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

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

Issue 308513004: Pass render frame ID to WebSocketBridge (Chromium side) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 6 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « content/child/websocket_bridge.cc ('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 <vector> 8 #include <vector>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 350 matching lines...) Expand 10 before | Expand all | Expand 10 after
361 bool final_update); 361 bool final_update);
362 virtual void reportFindInPageSelection(int request_id, 362 virtual void reportFindInPageSelection(int request_id,
363 int active_match_ordinal, 363 int active_match_ordinal,
364 const blink::WebRect& sel); 364 const blink::WebRect& sel);
365 virtual void requestStorageQuota(blink::WebLocalFrame* frame, 365 virtual void requestStorageQuota(blink::WebLocalFrame* frame,
366 blink::WebStorageQuotaType type, 366 blink::WebStorageQuotaType type,
367 unsigned long long requested_size, 367 unsigned long long requested_size,
368 blink::WebStorageQuotaCallbacks callbacks); 368 blink::WebStorageQuotaCallbacks callbacks);
369 virtual void willOpenSocketStream( 369 virtual void willOpenSocketStream(
370 blink::WebSocketStreamHandle* handle); 370 blink::WebSocketStreamHandle* handle);
371 virtual void willOpenWebSocket(blink::WebSocketHandle* handle);
371 virtual blink::WebGeolocationClient* geolocationClient(); 372 virtual blink::WebGeolocationClient* geolocationClient();
372 virtual void willStartUsingPeerConnectionHandler( 373 virtual void willStartUsingPeerConnectionHandler(
373 blink::WebLocalFrame* frame, 374 blink::WebLocalFrame* frame,
374 blink::WebRTCPeerConnectionHandler* handler); 375 blink::WebRTCPeerConnectionHandler* handler);
375 virtual blink::WebUserMediaClient* userMediaClient(); 376 virtual blink::WebUserMediaClient* userMediaClient();
376 virtual blink::WebMIDIClient* webMIDIClient(); 377 virtual blink::WebMIDIClient* webMIDIClient();
377 virtual bool willCheckAndDispatchMessageEvent( 378 virtual bool willCheckAndDispatchMessageEvent(
378 blink::WebLocalFrame* source_frame, 379 blink::WebLocalFrame* source_frame,
379 blink::WebFrame* target_frame, 380 blink::WebFrame* target_frame,
380 blink::WebSecurityOrigin target_origin, 381 blink::WebSecurityOrigin target_origin,
(...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after
616 #endif 617 #endif
617 618
618 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; 619 base::WeakPtrFactory<RenderFrameImpl> weak_factory_;
619 620
620 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); 621 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl);
621 }; 622 };
622 623
623 } // namespace content 624 } // namespace content
624 625
625 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 626 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
OLDNEW
« no previous file with comments | « content/child/websocket_bridge.cc ('k') | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698