| 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 515 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 526 WebKit::WebFrame* frame, | 526 WebKit::WebFrame* frame, |
| 527 const WebKit::WebPluginParams& params); | 527 const WebKit::WebPluginParams& params); |
| 528 virtual WebKit::WebPlugin* createPluginReplacement( | 528 virtual WebKit::WebPlugin* createPluginReplacement( |
| 529 WebKit::WebFrame* frame, | 529 WebKit::WebFrame* frame, |
| 530 const WebKit::WebPluginParams& params); | 530 const WebKit::WebPluginParams& params); |
| 531 virtual WebKit::WebSharedWorker* createSharedWorker( | 531 virtual WebKit::WebSharedWorker* createSharedWorker( |
| 532 WebKit::WebFrame* frame, const WebKit::WebURL& url, | 532 WebKit::WebFrame* frame, const WebKit::WebURL& url, |
| 533 const WebKit::WebString& name, unsigned long long documentId); | 533 const WebKit::WebString& name, unsigned long long documentId); |
| 534 virtual WebKit::WebMediaPlayer* createMediaPlayer( | 534 virtual WebKit::WebMediaPlayer* createMediaPlayer( |
| 535 WebKit::WebFrame* frame, | 535 WebKit::WebFrame* frame, |
| 536 WebKit::WebMediaPlayerClient* client); | |
| 537 virtual WebKit::WebMediaPlayer* createMediaPlayer( | |
| 538 WebKit::WebFrame* frame, | |
| 539 const WebKit::WebURL& url, | 536 const WebKit::WebURL& url, |
| 540 WebKit::WebMediaPlayerClient* client); | 537 WebKit::WebMediaPlayerClient* client); |
| 541 virtual WebKit::WebApplicationCacheHost* createApplicationCacheHost( | 538 virtual WebKit::WebApplicationCacheHost* createApplicationCacheHost( |
| 542 WebKit::WebFrame* frame, | 539 WebKit::WebFrame* frame, |
| 543 WebKit::WebApplicationCacheHostClient* client); | 540 WebKit::WebApplicationCacheHostClient* client); |
| 544 virtual WebKit::WebCookieJar* cookieJar(WebKit::WebFrame* frame); | 541 virtual WebKit::WebCookieJar* cookieJar(WebKit::WebFrame* frame); |
| 545 virtual void frameDetached(WebKit::WebFrame* frame); | 542 virtual void frameDetached(WebKit::WebFrame* frame); |
| 546 virtual void willClose(WebKit::WebFrame* frame); | 543 virtual void willClose(WebKit::WebFrame* frame); |
| 547 virtual void loadURLExternally(WebKit::WebFrame* frame, | 544 virtual void loadURLExternally(WebKit::WebFrame* frame, |
| 548 const WebKit::WebURLRequest& request, | 545 const WebKit::WebURLRequest& request, |
| (...skipping 933 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1482 // bunch of stuff, you should probably create a helper class and put your | 1479 // bunch of stuff, you should probably create a helper class and put your |
| 1483 // data and methods on that to avoid bloating RenderView more. You can | 1480 // data and methods on that to avoid bloating RenderView more. You can |
| 1484 // use the Observer interface to filter IPC messages and receive frame change | 1481 // use the Observer interface to filter IPC messages and receive frame change |
| 1485 // notifications. | 1482 // notifications. |
| 1486 // --------------------------------------------------------------------------- | 1483 // --------------------------------------------------------------------------- |
| 1487 | 1484 |
| 1488 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1485 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1489 }; | 1486 }; |
| 1490 | 1487 |
| 1491 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1488 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |