| 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 | 7 |
| 8 #include <deque> | 8 #include <deque> |
| 9 #include <map> | 9 #include <map> |
| 10 #include <set> | 10 #include <set> |
| (...skipping 495 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 506 const WebKit::WebPluginParams& params); | 506 const WebKit::WebPluginParams& params); |
| 507 virtual WebKit::WebSharedWorker* createSharedWorker( | 507 virtual WebKit::WebSharedWorker* createSharedWorker( |
| 508 WebKit::WebFrame* frame, const WebKit::WebURL& url, | 508 WebKit::WebFrame* frame, const WebKit::WebURL& url, |
| 509 const WebKit::WebString& name, unsigned long long documentId); | 509 const WebKit::WebString& name, unsigned long long documentId); |
| 510 virtual WebKit::WebMediaPlayer* createMediaPlayer( | 510 virtual WebKit::WebMediaPlayer* createMediaPlayer( |
| 511 WebKit::WebFrame* frame, | 511 WebKit::WebFrame* frame, |
| 512 WebKit::WebMediaPlayerClient* client); | 512 WebKit::WebMediaPlayerClient* client); |
| 513 virtual WebKit::WebApplicationCacheHost* createApplicationCacheHost( | 513 virtual WebKit::WebApplicationCacheHost* createApplicationCacheHost( |
| 514 WebKit::WebFrame* frame, | 514 WebKit::WebFrame* frame, |
| 515 WebKit::WebApplicationCacheHostClient* client); | 515 WebKit::WebApplicationCacheHostClient* client); |
| 516 virtual WebKit::WebAudioDevice* createAudioDevice( |
| 517 size_t bufferSize, |
| 518 unsigned numberOfChannels, |
| 519 double sampleRate, |
| 520 WebKit::WebAudioDevice::RenderCallback* callback) OVERRIDE; |
| 516 virtual WebKit::WebCookieJar* cookieJar(WebKit::WebFrame* frame); | 521 virtual WebKit::WebCookieJar* cookieJar(WebKit::WebFrame* frame); |
| 517 virtual void frameDetached(WebKit::WebFrame* frame); | 522 virtual void frameDetached(WebKit::WebFrame* frame); |
| 518 virtual void willClose(WebKit::WebFrame* frame); | 523 virtual void willClose(WebKit::WebFrame* frame); |
| 519 virtual void loadURLExternally(WebKit::WebFrame* frame, | 524 virtual void loadURLExternally(WebKit::WebFrame* frame, |
| 520 const WebKit::WebURLRequest& request, | 525 const WebKit::WebURLRequest& request, |
| 521 WebKit::WebNavigationPolicy policy); | 526 WebKit::WebNavigationPolicy policy); |
| 522 virtual void loadURLExternally(WebKit::WebFrame* frame, | 527 virtual void loadURLExternally(WebKit::WebFrame* frame, |
| 523 const WebKit::WebURLRequest& request, | 528 const WebKit::WebURLRequest& request, |
| 524 WebKit::WebNavigationPolicy policy, | 529 WebKit::WebNavigationPolicy policy, |
| 525 const WebKit::WebString& suggested_name); | 530 const WebKit::WebString& suggested_name); |
| (...skipping 903 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1429 // bunch of stuff, you should probably create a helper class and put your | 1434 // bunch of stuff, you should probably create a helper class and put your |
| 1430 // data and methods on that to avoid bloating RenderView more. You can | 1435 // data and methods on that to avoid bloating RenderView more. You can |
| 1431 // use the Observer interface to filter IPC messages and receive frame change | 1436 // use the Observer interface to filter IPC messages and receive frame change |
| 1432 // notifications. | 1437 // notifications. |
| 1433 // --------------------------------------------------------------------------- | 1438 // --------------------------------------------------------------------------- |
| 1434 | 1439 |
| 1435 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1440 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1436 }; | 1441 }; |
| 1437 | 1442 |
| 1438 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1443 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |