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

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

Issue 9677031: Bind RenderViewImpl routing_id to SocketStreamHost (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: reflects review comments Created 8 years, 9 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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_VIEW_IMPL_H_ 5 #ifndef CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
7 #pragma once 7 #pragma once
8 8
9 #include <deque> 9 #include <deque>
10 #include <map> 10 #include <map>
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
118 class WebDataSource; 118 class WebDataSource;
119 class WebDragData; 119 class WebDragData;
120 class WebGeolocationClient; 120 class WebGeolocationClient;
121 class WebIconURL; 121 class WebIconURL;
122 class WebImage; 122 class WebImage;
123 class WebMediaPlayer; 123 class WebMediaPlayer;
124 class WebMediaPlayerClient; 124 class WebMediaPlayerClient;
125 class WebMouseEvent; 125 class WebMouseEvent;
126 class WebPeerConnectionHandler; 126 class WebPeerConnectionHandler;
127 class WebPeerConnectionHandlerClient; 127 class WebPeerConnectionHandlerClient;
128 class WebSocketStreamHandle;
128 class WebSpeechInputController; 129 class WebSpeechInputController;
129 class WebSpeechInputListener; 130 class WebSpeechInputListener;
130 class WebStorageNamespace; 131 class WebStorageNamespace;
131 class WebTouchEvent; 132 class WebTouchEvent;
132 class WebURLLoader; 133 class WebURLLoader;
133 class WebURLRequest; 134 class WebURLRequest;
134 class WebUserMediaClient; 135 class WebUserMediaClient;
135 struct WebFileChooserParams; 136 struct WebFileChooserParams;
136 struct WebFindOptions; 137 struct WebFindOptions;
137 struct WebMediaPlayerAction; 138 struct WebMediaPlayerAction;
(...skipping 406 matching lines...) Expand 10 before | Expand all | Expand 10 after
544 virtual void numberOfWheelEventHandlersChanged(unsigned num_handlers); 545 virtual void numberOfWheelEventHandlersChanged(unsigned num_handlers);
545 virtual void numberOfTouchEventHandlersChanged(unsigned num_handlers); 546 virtual void numberOfTouchEventHandlersChanged(unsigned num_handlers);
546 virtual void didChangeContentsSize(WebKit::WebFrame* frame, 547 virtual void didChangeContentsSize(WebKit::WebFrame* frame,
547 const WebKit::WebSize& size); 548 const WebKit::WebSize& size);
548 virtual void reportFindInPageMatchCount(int request_id, 549 virtual void reportFindInPageMatchCount(int request_id,
549 int count, 550 int count,
550 bool final_update); 551 bool final_update);
551 virtual void reportFindInPageSelection(int request_id, 552 virtual void reportFindInPageSelection(int request_id,
552 int active_match_ordinal, 553 int active_match_ordinal,
553 const WebKit::WebRect& sel); 554 const WebKit::WebRect& sel);
554
555 virtual void openFileSystem(WebKit::WebFrame* frame, 555 virtual void openFileSystem(WebKit::WebFrame* frame,
556 WebKit::WebFileSystem::Type type, 556 WebKit::WebFileSystem::Type type,
557 long long size, 557 long long size,
558 bool create, 558 bool create,
559 WebKit::WebFileSystemCallbacks* callbacks); 559 WebKit::WebFileSystemCallbacks* callbacks);
560
561 virtual void queryStorageUsageAndQuota( 560 virtual void queryStorageUsageAndQuota(
562 WebKit::WebFrame* frame, 561 WebKit::WebFrame* frame,
563 WebKit::WebStorageQuotaType type, 562 WebKit::WebStorageQuotaType type,
564 WebKit::WebStorageQuotaCallbacks* callbacks); 563 WebKit::WebStorageQuotaCallbacks* callbacks);
565
566 virtual void requestStorageQuota( 564 virtual void requestStorageQuota(
567 WebKit::WebFrame* frame, 565 WebKit::WebFrame* frame,
568 WebKit::WebStorageQuotaType type, 566 WebKit::WebStorageQuotaType type,
569 unsigned long long requested_size, 567 unsigned long long requested_size,
570 WebKit::WebStorageQuotaCallbacks* callbacks); 568 WebKit::WebStorageQuotaCallbacks* callbacks);
571
572 virtual void registerIntentService( 569 virtual void registerIntentService(
573 WebKit::WebFrame* frame, 570 WebKit::WebFrame* frame,
574 const WebKit::WebIntentServiceInfo& service); 571 const WebKit::WebIntentServiceInfo& service);
575 virtual void dispatchIntent(WebKit::WebFrame* frame, 572 virtual void dispatchIntent(WebKit::WebFrame* frame,
576 const WebKit::WebIntentRequest& intentRequest); 573 const WebKit::WebIntentRequest& intentRequest);
574 virtual void willOpenSocketStream(
575 WebKit::WebSocketStreamHandle* handle);
577 576
578 // WebKit::WebPageSerializerClient implementation ---------------------------- 577 // WebKit::WebPageSerializerClient implementation ----------------------------
579 578
580 virtual void didSerializeDataForFrame( 579 virtual void didSerializeDataForFrame(
581 const WebKit::WebURL& frame_url, 580 const WebKit::WebURL& frame_url,
582 const WebKit::WebCString& data, 581 const WebKit::WebCString& data,
583 PageSerializationStatus status) OVERRIDE; 582 PageSerializationStatus status) OVERRIDE;
584 583
585 // content::RenderView implementation ---------------------------------------- 584 // content::RenderView implementation ----------------------------------------
586 585
(...skipping 715 matching lines...) Expand 10 before | Expand all | Expand 10 after
1302 // bunch of stuff, you should probably create a helper class and put your 1301 // bunch of stuff, you should probably create a helper class and put your
1303 // data and methods on that to avoid bloating RenderView more. You can 1302 // data and methods on that to avoid bloating RenderView more. You can
1304 // use the Observer interface to filter IPC messages and receive frame change 1303 // use the Observer interface to filter IPC messages and receive frame change
1305 // notifications. 1304 // notifications.
1306 // --------------------------------------------------------------------------- 1305 // ---------------------------------------------------------------------------
1307 1306
1308 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); 1307 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl);
1309 }; 1308 };
1310 1309
1311 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 1310 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698