| 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 329 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 340 const blink::WebURL& url, | 340 const blink::WebURL& url, |
| 341 blink::WebMediaPlayerClient* client); | 341 blink::WebMediaPlayerClient* client); |
| 342 virtual blink::WebMediaPlayer* createMediaPlayer( | 342 virtual blink::WebMediaPlayer* createMediaPlayer( |
| 343 blink::WebLocalFrame* frame, | 343 blink::WebLocalFrame* frame, |
| 344 const blink::WebURL& url, | 344 const blink::WebURL& url, |
| 345 blink::WebMediaPlayerClient* client, | 345 blink::WebMediaPlayerClient* client, |
| 346 blink::WebContentDecryptionModule* initial_cdm); | 346 blink::WebContentDecryptionModule* initial_cdm); |
| 347 virtual blink::WebApplicationCacheHost* createApplicationCacheHost( | 347 virtual blink::WebApplicationCacheHost* createApplicationCacheHost( |
| 348 blink::WebLocalFrame* frame, | 348 blink::WebLocalFrame* frame, |
| 349 blink::WebApplicationCacheHostClient* client); | 349 blink::WebApplicationCacheHostClient* client); |
| 350 virtual blink::WebWorkerPermissionClientProxy* | 350 virtual blink::WebWorkerContentSettingsClientProxy* |
| 351 createWorkerPermissionClientProxy(blink::WebLocalFrame* frame); | 351 createWorkerContentSettingsClientProxy(blink::WebLocalFrame* frame); |
| 352 virtual blink::WebExternalPopupMenu* createExternalPopupMenu( | 352 virtual blink::WebExternalPopupMenu* createExternalPopupMenu( |
| 353 const blink::WebPopupMenuInfo& popup_menu_info, | 353 const blink::WebPopupMenuInfo& popup_menu_info, |
| 354 blink::WebExternalPopupMenuClient* popup_menu_client); | 354 blink::WebExternalPopupMenuClient* popup_menu_client); |
| 355 virtual blink::WebCookieJar* cookieJar(blink::WebLocalFrame* frame); | 355 virtual blink::WebCookieJar* cookieJar(blink::WebLocalFrame* frame); |
| 356 virtual blink::WebServiceWorkerProvider* createServiceWorkerProvider( | 356 virtual blink::WebServiceWorkerProvider* createServiceWorkerProvider( |
| 357 blink::WebLocalFrame* frame); | 357 blink::WebLocalFrame* frame); |
| 358 virtual void didAccessInitialDocument(blink::WebLocalFrame* frame); | 358 virtual void didAccessInitialDocument(blink::WebLocalFrame* frame); |
| 359 virtual blink::WebFrame* createChildFrame( | 359 virtual blink::WebFrame* createChildFrame( |
| 360 blink::WebLocalFrame* parent, | 360 blink::WebLocalFrame* parent, |
| 361 const blink::WebString& name, | 361 const blink::WebString& name, |
| (...skipping 508 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 870 #endif | 870 #endif |
| 871 | 871 |
| 872 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 872 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 873 | 873 |
| 874 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 874 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 875 }; | 875 }; |
| 876 | 876 |
| 877 } // namespace content | 877 } // namespace content |
| 878 | 878 |
| 879 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 879 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |