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 487 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
498 const WebKit::WebPluginParams& params); | 498 const WebKit::WebPluginParams& params); |
499 virtual WebKit::WebPlugin* createPluginReplacement( | 499 virtual WebKit::WebPlugin* createPluginReplacement( |
500 WebKit::WebFrame* frame, | 500 WebKit::WebFrame* frame, |
501 const WebKit::WebPluginParams& params); | 501 const WebKit::WebPluginParams& params); |
502 virtual WebKit::WebSharedWorker* createSharedWorker( | 502 virtual WebKit::WebSharedWorker* createSharedWorker( |
503 WebKit::WebFrame* frame, const WebKit::WebURL& url, | 503 WebKit::WebFrame* frame, const WebKit::WebURL& url, |
504 const WebKit::WebString& name, unsigned long long documentId); | 504 const WebKit::WebString& name, unsigned long long documentId); |
505 virtual WebKit::WebMediaPlayer* createMediaPlayer( | 505 virtual WebKit::WebMediaPlayer* createMediaPlayer( |
506 WebKit::WebFrame* frame, | 506 WebKit::WebFrame* frame, |
507 WebKit::WebMediaPlayerClient* client); | 507 WebKit::WebMediaPlayerClient* client); |
508 virtual WebKit::WebMediaPlayer* createMediaPlayer( | |
509 WebKit::WebFrame* frame, | |
510 WebKit::WebMediaPlayerClient* client, | |
511 const WebKit::WebURL& url); | |
Ami GONE FROM CHROMIUM
2012/06/09 02:45:14
Make this be the first param?
wjia(left Chromium)
2012/06/11 21:31:07
Done.
| |
508 virtual WebKit::WebApplicationCacheHost* createApplicationCacheHost( | 512 virtual WebKit::WebApplicationCacheHost* createApplicationCacheHost( |
509 WebKit::WebFrame* frame, | 513 WebKit::WebFrame* frame, |
510 WebKit::WebApplicationCacheHostClient* client); | 514 WebKit::WebApplicationCacheHostClient* client); |
511 virtual WebKit::WebCookieJar* cookieJar(WebKit::WebFrame* frame); | 515 virtual WebKit::WebCookieJar* cookieJar(WebKit::WebFrame* frame); |
512 virtual void frameDetached(WebKit::WebFrame* frame); | 516 virtual void frameDetached(WebKit::WebFrame* frame); |
513 virtual void willClose(WebKit::WebFrame* frame); | 517 virtual void willClose(WebKit::WebFrame* frame); |
514 virtual void loadURLExternally(WebKit::WebFrame* frame, | 518 virtual void loadURLExternally(WebKit::WebFrame* frame, |
515 const WebKit::WebURLRequest& request, | 519 const WebKit::WebURLRequest& request, |
516 WebKit::WebNavigationPolicy policy); | 520 WebKit::WebNavigationPolicy policy); |
517 virtual void loadURLExternally(WebKit::WebFrame* frame, | 521 virtual void loadURLExternally(WebKit::WebFrame* frame, |
(...skipping 912 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1430 // 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 |
1431 // 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 |
1432 // 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 |
1433 // notifications. | 1437 // notifications. |
1434 // --------------------------------------------------------------------------- | 1438 // --------------------------------------------------------------------------- |
1435 | 1439 |
1436 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1440 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
1437 }; | 1441 }; |
1438 | 1442 |
1439 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1443 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
OLD | NEW |