| 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 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 257 blink::WebFrame* frame, | 257 blink::WebFrame* frame, |
| 258 const WebPluginInfo& info, | 258 const WebPluginInfo& info, |
| 259 const blink::WebPluginParams& params) OVERRIDE; | 259 const blink::WebPluginParams& params) OVERRIDE; |
| 260 virtual void LoadURLExternally(blink::WebLocalFrame* frame, | 260 virtual void LoadURLExternally(blink::WebLocalFrame* frame, |
| 261 const blink::WebURLRequest& request, | 261 const blink::WebURLRequest& request, |
| 262 blink::WebNavigationPolicy policy) OVERRIDE; | 262 blink::WebNavigationPolicy policy) OVERRIDE; |
| 263 virtual void ExecuteJavaScript(const base::string16& javascript) OVERRIDE; | 263 virtual void ExecuteJavaScript(const base::string16& javascript) OVERRIDE; |
| 264 virtual bool IsHidden() OVERRIDE; | 264 virtual bool IsHidden() OVERRIDE; |
| 265 virtual ServiceRegistry* GetServiceRegistry() OVERRIDE; | 265 virtual ServiceRegistry* GetServiceRegistry() OVERRIDE; |
| 266 virtual bool IsFTPDirectoryListing() OVERRIDE; | 266 virtual bool IsFTPDirectoryListing() OVERRIDE; |
| 267 virtual void AttachToBrowserPlugin(int browser_plugin_instance_id, |
| 268 int guest_instnace_id) OVERRIDE; |
| 267 | 269 |
| 268 // blink::WebFrameClient implementation: | 270 // blink::WebFrameClient implementation: |
| 269 virtual blink::WebPlugin* createPlugin(blink::WebLocalFrame* frame, | 271 virtual blink::WebPlugin* createPlugin(blink::WebLocalFrame* frame, |
| 270 const blink::WebPluginParams& params); | 272 const blink::WebPluginParams& params); |
| 271 virtual blink::WebMediaPlayer* createMediaPlayer( | 273 virtual blink::WebMediaPlayer* createMediaPlayer( |
| 272 blink::WebLocalFrame* frame, | 274 blink::WebLocalFrame* frame, |
| 273 const blink::WebURL& url, | 275 const blink::WebURL& url, |
| 274 blink::WebMediaPlayerClient* client); | 276 blink::WebMediaPlayerClient* client); |
| 275 virtual blink::WebContentDecryptionModule* createContentDecryptionModule( | 277 virtual blink::WebContentDecryptionModule* createContentDecryptionModule( |
| 276 blink::WebLocalFrame* frame, | 278 blink::WebLocalFrame* frame, |
| (...skipping 433 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 710 RendererAccessibility* renderer_accessibility_; | 712 RendererAccessibility* renderer_accessibility_; |
| 711 | 713 |
| 712 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 714 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 713 | 715 |
| 714 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 716 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 715 }; | 717 }; |
| 716 | 718 |
| 717 } // namespace content | 719 } // namespace content |
| 718 | 720 |
| 719 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 721 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |