| 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 214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 225 virtual blink::WebPlugin* CreatePlugin( | 225 virtual blink::WebPlugin* CreatePlugin( |
| 226 blink::WebFrame* frame, | 226 blink::WebFrame* frame, |
| 227 const WebPluginInfo& info, | 227 const WebPluginInfo& info, |
| 228 const blink::WebPluginParams& params) OVERRIDE; | 228 const blink::WebPluginParams& params) OVERRIDE; |
| 229 virtual void LoadURLExternally(blink::WebLocalFrame* frame, | 229 virtual void LoadURLExternally(blink::WebLocalFrame* frame, |
| 230 const blink::WebURLRequest& request, | 230 const blink::WebURLRequest& request, |
| 231 blink::WebNavigationPolicy policy) OVERRIDE; | 231 blink::WebNavigationPolicy policy) OVERRIDE; |
| 232 virtual void ExecuteJavaScript(const base::string16& javascript) OVERRIDE; | 232 virtual void ExecuteJavaScript(const base::string16& javascript) OVERRIDE; |
| 233 virtual bool IsHidden() OVERRIDE; | 233 virtual bool IsHidden() OVERRIDE; |
| 234 virtual ServiceRegistry* GetServiceRegistry() OVERRIDE; | 234 virtual ServiceRegistry* GetServiceRegistry() OVERRIDE; |
| 235 virtual bool IsFTPDirectoryListing() OVERRIDE; |
| 235 | 236 |
| 236 // blink::WebFrameClient implementation: | 237 // blink::WebFrameClient implementation: |
| 237 virtual blink::WebPlugin* createPlugin(blink::WebLocalFrame* frame, | 238 virtual blink::WebPlugin* createPlugin(blink::WebLocalFrame* frame, |
| 238 const blink::WebPluginParams& params); | 239 const blink::WebPluginParams& params); |
| 239 virtual blink::WebMediaPlayer* createMediaPlayer( | 240 virtual blink::WebMediaPlayer* createMediaPlayer( |
| 240 blink::WebLocalFrame* frame, | 241 blink::WebLocalFrame* frame, |
| 241 const blink::WebURL& url, | 242 const blink::WebURL& url, |
| 242 blink::WebMediaPlayerClient* client); | 243 blink::WebMediaPlayerClient* client); |
| 243 virtual blink::WebContentDecryptionModule* createContentDecryptionModule( | 244 virtual blink::WebContentDecryptionModule* createContentDecryptionModule( |
| 244 blink::WebLocalFrame* frame, | 245 blink::WebLocalFrame* frame, |
| (...skipping 420 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 665 ScreenOrientationDispatcher* screen_orientation_dispatcher_; | 666 ScreenOrientationDispatcher* screen_orientation_dispatcher_; |
| 666 | 667 |
| 667 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 668 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 668 | 669 |
| 669 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 670 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 670 }; | 671 }; |
| 671 | 672 |
| 672 } // namespace content | 673 } // namespace content |
| 673 | 674 |
| 674 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 675 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |