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

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: add CONTENT_EXPORT to ForHandle() 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
« no previous file with comments | « content/content_common.gypi ('k') | content/renderer/render_view_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 (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 406 matching lines...) Expand 10 before | Expand all | Expand 10 after
545 virtual void numberOfWheelEventHandlersChanged(unsigned num_handlers); 546 virtual void numberOfWheelEventHandlersChanged(unsigned num_handlers);
546 virtual void numberOfTouchEventHandlersChanged(unsigned num_handlers); 547 virtual void numberOfTouchEventHandlersChanged(unsigned num_handlers);
547 virtual void didChangeContentsSize(WebKit::WebFrame* frame, 548 virtual void didChangeContentsSize(WebKit::WebFrame* frame,
548 const WebKit::WebSize& size); 549 const WebKit::WebSize& size);
549 virtual void reportFindInPageMatchCount(int request_id, 550 virtual void reportFindInPageMatchCount(int request_id,
550 int count, 551 int count,
551 bool final_update); 552 bool final_update);
552 virtual void reportFindInPageSelection(int request_id, 553 virtual void reportFindInPageSelection(int request_id,
553 int active_match_ordinal, 554 int active_match_ordinal,
554 const WebKit::WebRect& sel); 555 const WebKit::WebRect& sel);
555
556 virtual void openFileSystem(WebKit::WebFrame* frame, 556 virtual void openFileSystem(WebKit::WebFrame* frame,
557 WebKit::WebFileSystem::Type type, 557 WebKit::WebFileSystem::Type type,
558 long long size, 558 long long size,
559 bool create, 559 bool create,
560 WebKit::WebFileSystemCallbacks* callbacks); 560 WebKit::WebFileSystemCallbacks* callbacks);
561
562 virtual void queryStorageUsageAndQuota( 561 virtual void queryStorageUsageAndQuota(
563 WebKit::WebFrame* frame, 562 WebKit::WebFrame* frame,
564 WebKit::WebStorageQuotaType type, 563 WebKit::WebStorageQuotaType type,
565 WebKit::WebStorageQuotaCallbacks* callbacks); 564 WebKit::WebStorageQuotaCallbacks* callbacks);
566
567 virtual void requestStorageQuota( 565 virtual void requestStorageQuota(
568 WebKit::WebFrame* frame, 566 WebKit::WebFrame* frame,
569 WebKit::WebStorageQuotaType type, 567 WebKit::WebStorageQuotaType type,
570 unsigned long long requested_size, 568 unsigned long long requested_size,
571 WebKit::WebStorageQuotaCallbacks* callbacks); 569 WebKit::WebStorageQuotaCallbacks* callbacks);
572
573 virtual void registerIntentService( 570 virtual void registerIntentService(
574 WebKit::WebFrame* frame, 571 WebKit::WebFrame* frame,
575 const WebKit::WebIntentServiceInfo& service); 572 const WebKit::WebIntentServiceInfo& service);
576 virtual void dispatchIntent(WebKit::WebFrame* frame, 573 virtual void dispatchIntent(WebKit::WebFrame* frame,
577 const WebKit::WebIntentRequest& intentRequest); 574 const WebKit::WebIntentRequest& intentRequest);
575 virtual void willOpenSocketStream(
576 WebKit::WebSocketStreamHandle* handle);
578 577
579 // WebKit::WebPageSerializerClient implementation ---------------------------- 578 // WebKit::WebPageSerializerClient implementation ----------------------------
580 579
581 virtual void didSerializeDataForFrame( 580 virtual void didSerializeDataForFrame(
582 const WebKit::WebURL& frame_url, 581 const WebKit::WebURL& frame_url,
583 const WebKit::WebCString& data, 582 const WebKit::WebCString& data,
584 PageSerializationStatus status) OVERRIDE; 583 PageSerializationStatus status) OVERRIDE;
585 584
586 // content::RenderView implementation ---------------------------------------- 585 // content::RenderView implementation ----------------------------------------
587 586
(...skipping 723 matching lines...) Expand 10 before | Expand all | Expand 10 after
1311 // bunch of stuff, you should probably create a helper class and put your 1310 // bunch of stuff, you should probably create a helper class and put your
1312 // data and methods on that to avoid bloating RenderView more. You can 1311 // data and methods on that to avoid bloating RenderView more. You can
1313 // use the Observer interface to filter IPC messages and receive frame change 1312 // use the Observer interface to filter IPC messages and receive frame change
1314 // notifications. 1313 // notifications.
1315 // --------------------------------------------------------------------------- 1314 // ---------------------------------------------------------------------------
1316 1315
1317 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); 1316 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl);
1318 }; 1317 };
1319 1318
1320 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 1319 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
OLDNEW
« no previous file with comments | « content/content_common.gypi ('k') | content/renderer/render_view_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698