| 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 AttachGuest(int element_instance_id) OVERRIDE; |
| 267 | 268 |
| 268 // blink::WebFrameClient implementation: | 269 // blink::WebFrameClient implementation: |
| 269 virtual blink::WebPlugin* createPlugin(blink::WebLocalFrame* frame, | 270 virtual blink::WebPlugin* createPlugin(blink::WebLocalFrame* frame, |
| 270 const blink::WebPluginParams& params); | 271 const blink::WebPluginParams& params); |
| 271 virtual blink::WebMediaPlayer* createMediaPlayer( | 272 virtual blink::WebMediaPlayer* createMediaPlayer( |
| 272 blink::WebLocalFrame* frame, | 273 blink::WebLocalFrame* frame, |
| 273 const blink::WebURL& url, | 274 const blink::WebURL& url, |
| 274 blink::WebMediaPlayerClient* client); | 275 blink::WebMediaPlayerClient* client); |
| 275 virtual blink::WebContentDecryptionModule* createContentDecryptionModule( | 276 virtual blink::WebContentDecryptionModule* createContentDecryptionModule( |
| 276 blink::WebLocalFrame* frame, | 277 blink::WebLocalFrame* frame, |
| (...skipping 433 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 710 RendererAccessibility* renderer_accessibility_; | 711 RendererAccessibility* renderer_accessibility_; |
| 711 | 712 |
| 712 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 713 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 713 | 714 |
| 714 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 715 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 715 }; | 716 }; |
| 716 | 717 |
| 717 } // namespace content | 718 } // namespace content |
| 718 | 719 |
| 719 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 720 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |