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

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: static AddToHandle with render_view_id 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 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 class WebDataSource; 119 class WebDataSource;
120 class WebDragData; 120 class WebDragData;
121 class WebGeolocationClient; 121 class WebGeolocationClient;
122 class WebIconURL; 122 class WebIconURL;
123 class WebImage; 123 class WebImage;
124 class WebMediaPlayer; 124 class WebMediaPlayer;
125 class WebMediaPlayerClient; 125 class WebMediaPlayerClient;
126 class WebMouseEvent; 126 class WebMouseEvent;
127 class WebPeerConnectionHandler; 127 class WebPeerConnectionHandler;
128 class WebPeerConnectionHandlerClient; 128 class WebPeerConnectionHandlerClient;
129 class WebSocketStreamHandle;
129 class WebSpeechInputController; 130 class WebSpeechInputController;
130 class WebSpeechInputListener; 131 class WebSpeechInputListener;
131 class WebStorageNamespace; 132 class WebStorageNamespace;
132 class WebTouchEvent; 133 class WebTouchEvent;
133 class WebURLLoader; 134 class WebURLLoader;
134 class WebURLRequest; 135 class WebURLRequest;
135 class WebUserMediaClient; 136 class WebUserMediaClient;
136 struct WebFileChooserParams; 137 struct WebFileChooserParams;
137 struct WebFindOptions; 138 struct WebFindOptions;
138 struct WebMediaPlayerAction; 139 struct WebMediaPlayerAction;
(...skipping 405 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 718 matching lines...) Expand 10 before | Expand all | Expand 10 after
1305 // bunch of stuff, you should probably create a helper class and put your 1304 // bunch of stuff, you should probably create a helper class and put your
1306 // data and methods on that to avoid bloating RenderView more. You can 1305 // data and methods on that to avoid bloating RenderView more. You can
1307 // use the Observer interface to filter IPC messages and receive frame change 1306 // use the Observer interface to filter IPC messages and receive frame change
1308 // notifications. 1307 // notifications.
1309 // --------------------------------------------------------------------------- 1308 // ---------------------------------------------------------------------------
1310 1309
1311 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); 1310 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl);
1312 }; 1311 };
1313 1312
1314 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 1313 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698