Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_FRAME_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| 6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| (...skipping 336 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 347 blink::WebPluginPlaceholder* createPluginPlaceholder( | 347 blink::WebPluginPlaceholder* createPluginPlaceholder( |
| 348 blink::WebLocalFrame*, | 348 blink::WebLocalFrame*, |
| 349 const blink::WebPluginParams&) override; | 349 const blink::WebPluginParams&) override; |
| 350 virtual blink::WebPlugin* createPlugin(blink::WebLocalFrame* frame, | 350 virtual blink::WebPlugin* createPlugin(blink::WebLocalFrame* frame, |
| 351 const blink::WebPluginParams& params); | 351 const blink::WebPluginParams& params); |
| 352 // TODO(jrummell): Remove this method once blink updated. | 352 // TODO(jrummell): Remove this method once blink updated. |
| 353 virtual blink::WebMediaPlayer* createMediaPlayer( | 353 virtual blink::WebMediaPlayer* createMediaPlayer( |
| 354 blink::WebLocalFrame* frame, | 354 blink::WebLocalFrame* frame, |
| 355 const blink::WebURL& url, | 355 const blink::WebURL& url, |
| 356 blink::WebMediaPlayerClient* client); | 356 blink::WebMediaPlayerClient* client); |
| 357 virtual blink::WebMediaPlayer* createMediaPlayer( | 357 virtual blink::WebMediaPlayer* createMediaPlayer( |
|
ddorwin
2015/05/19 17:09:20
Because Blink is independent of Chromium, you need
Srirama
2015/05/19 18:20:35
I will definitely use this. Infact i need to do a
| |
| 358 blink::WebLocalFrame* frame, | 358 blink::WebLocalFrame* frame, |
| 359 const blink::WebURL& url, | 359 const blink::WebURL& url, |
| 360 blink::WebMediaPlayerClient* client, | 360 blink::WebMediaPlayerClient* client, |
| 361 blink::WebMediaPlayerEncryptedMediaClient* encrypted_client, | |
|
ddorwin
2015/05/19 17:09:20
You need to update components/html_viewer/html_doc
Srirama
2015/05/19 18:20:35
Acknowledged.
| |
| 361 blink::WebContentDecryptionModule* initial_cdm); | 362 blink::WebContentDecryptionModule* initial_cdm); |
| 362 virtual blink::WebApplicationCacheHost* createApplicationCacheHost( | 363 virtual blink::WebApplicationCacheHost* createApplicationCacheHost( |
| 363 blink::WebLocalFrame* frame, | 364 blink::WebLocalFrame* frame, |
| 364 blink::WebApplicationCacheHostClient* client); | 365 blink::WebApplicationCacheHostClient* client); |
| 365 virtual blink::WebWorkerContentSettingsClientProxy* | 366 virtual blink::WebWorkerContentSettingsClientProxy* |
| 366 createWorkerContentSettingsClientProxy(blink::WebLocalFrame* frame); | 367 createWorkerContentSettingsClientProxy(blink::WebLocalFrame* frame); |
| 367 virtual blink::WebExternalPopupMenu* createExternalPopupMenu( | 368 virtual blink::WebExternalPopupMenu* createExternalPopupMenu( |
| 368 const blink::WebPopupMenuInfo& popup_menu_info, | 369 const blink::WebPopupMenuInfo& popup_menu_info, |
| 369 blink::WebExternalPopupMenuClient* popup_menu_client); | 370 blink::WebExternalPopupMenuClient* popup_menu_client); |
| 370 virtual blink::WebCookieJar* cookieJar(blink::WebLocalFrame* frame); | 371 virtual blink::WebCookieJar* cookieJar(blink::WebLocalFrame* frame); |
| (...skipping 617 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 988 #endif | 989 #endif |
| 989 | 990 |
| 990 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 991 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 991 | 992 |
| 992 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 993 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 993 }; | 994 }; |
| 994 | 995 |
| 995 } // namespace content | 996 } // namespace content |
| 996 | 997 |
| 997 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 998 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |