Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 Loading... | |
| 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 429 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 567 WebKit::WebFrame* frame, | 568 WebKit::WebFrame* frame, |
| 568 WebKit::WebStorageQuotaType type, | 569 WebKit::WebStorageQuotaType type, |
| 569 unsigned long long requested_size, | 570 unsigned long long requested_size, |
| 570 WebKit::WebStorageQuotaCallbacks* callbacks); | 571 WebKit::WebStorageQuotaCallbacks* callbacks); |
| 571 | 572 |
| 572 virtual void registerIntentService( | 573 virtual void registerIntentService( |
| 573 WebKit::WebFrame* frame, | 574 WebKit::WebFrame* frame, |
| 574 const WebKit::WebIntentServiceInfo& service); | 575 const WebKit::WebIntentServiceInfo& service); |
| 575 virtual void dispatchIntent(WebKit::WebFrame* frame, | 576 virtual void dispatchIntent(WebKit::WebFrame* frame, |
| 576 const WebKit::WebIntentRequest& intentRequest); | 577 const WebKit::WebIntentRequest& intentRequest); |
| 577 | 578 |
|
jam
2012/03/15 02:01:19
no need for blank line here (and while you're at i
Takashi Toyoshima
2012/03/15 22:49:03
I see.
I removed blank lines around here.
| |
| 579 virtual void willOpenSocketStream( | |
| 580 WebKit::WebSocketStreamHandle* handle); | |
| 581 | |
| 578 // WebKit::WebPageSerializerClient implementation ---------------------------- | 582 // WebKit::WebPageSerializerClient implementation ---------------------------- |
| 579 | 583 |
| 580 virtual void didSerializeDataForFrame( | 584 virtual void didSerializeDataForFrame( |
| 581 const WebKit::WebURL& frame_url, | 585 const WebKit::WebURL& frame_url, |
| 582 const WebKit::WebCString& data, | 586 const WebKit::WebCString& data, |
| 583 PageSerializationStatus status) OVERRIDE; | 587 PageSerializationStatus status) OVERRIDE; |
| 584 | 588 |
| 585 // content::RenderView implementation ---------------------------------------- | 589 // content::RenderView implementation ---------------------------------------- |
| 586 | 590 |
| 587 virtual bool Send(IPC::Message* message) OVERRIDE; | 591 virtual bool Send(IPC::Message* message) OVERRIDE; |
| (...skipping 714 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1302 // bunch of stuff, you should probably create a helper class and put your | 1306 // 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 | 1307 // 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 | 1308 // use the Observer interface to filter IPC messages and receive frame change |
| 1305 // notifications. | 1309 // notifications. |
| 1306 // --------------------------------------------------------------------------- | 1310 // --------------------------------------------------------------------------- |
| 1307 | 1311 |
| 1308 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1312 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1309 }; | 1313 }; |
| 1310 | 1314 |
| 1311 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1315 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |