| OLD | NEW |
| 1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 2012 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 ANDROID_WEBVIEW_RENDERER_AW_CONTENT_RENDERER_CLIENT_H_ | 5 #ifndef ANDROID_WEBVIEW_RENDERER_AW_CONTENT_RENDERER_CLIENT_H_ |
| 6 #define ANDROID_WEBVIEW_RENDERER_AW_CONTENT_RENDERER_CLIENT_H_ | 6 #define ANDROID_WEBVIEW_RENDERER_AW_CONTENT_RENDERER_CLIENT_H_ |
| 7 | 7 |
| 8 #include "content/public/renderer/content_renderer_client.h" | 8 #include "content/public/renderer/content_renderer_client.h" |
| 9 | 9 |
| 10 #include "android_webview/renderer/aw_render_process_observer.h" | 10 #include "android_webview/renderer/aw_render_process_observer.h" |
| 11 #include "base/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
| 12 | 12 |
| 13 namespace visitedlink { | 13 namespace visitedlink { |
| 14 class VisitedLinkSlave; | 14 class VisitedLinkSlave; |
| 15 } | 15 } |
| 16 | 16 |
| 17 namespace android_webview { | 17 namespace android_webview { |
| 18 | 18 |
| 19 class AwExecutionTerminationFilter; | 19 class AwContentRendererClient : public content::ContentRendererClient { |
| 20 | |
| 21 class AwContentRendererClient : public content::ContentRendererClient, | |
| 22 public content::RenderProcessObserver { | |
| 23 public: | 20 public: |
| 24 AwContentRendererClient(); | 21 AwContentRendererClient(); |
| 25 virtual ~AwContentRendererClient(); | 22 virtual ~AwContentRendererClient(); |
| 26 | 23 |
| 27 // ContentRendererClient implementation. | 24 // ContentRendererClient implementation. |
| 28 virtual void RenderThreadStarted() OVERRIDE; | 25 virtual void RenderThreadStarted() OVERRIDE; |
| 29 virtual void RenderFrameCreated(content::RenderFrame* render_frame) OVERRIDE; | 26 virtual void RenderFrameCreated(content::RenderFrame* render_frame) OVERRIDE; |
| 30 virtual void RenderViewCreated(content::RenderView* render_view) OVERRIDE; | 27 virtual void RenderViewCreated(content::RenderView* render_view) OVERRIDE; |
| 31 virtual std::string GetDefaultEncoding() OVERRIDE; | 28 virtual std::string GetDefaultEncoding() OVERRIDE; |
| 32 virtual bool HasErrorPage(int http_status_code, | 29 virtual bool HasErrorPage(int http_status_code, |
| (...skipping 13 matching lines...) Expand all Loading... |
| 46 | 43 |
| 47 virtual bool HandleNavigation(content::RenderFrame* render_frame, | 44 virtual bool HandleNavigation(content::RenderFrame* render_frame, |
| 48 content::DocumentState* document_state, | 45 content::DocumentState* document_state, |
| 49 int opener_id, | 46 int opener_id, |
| 50 blink::WebFrame* frame, | 47 blink::WebFrame* frame, |
| 51 const blink::WebURLRequest& request, | 48 const blink::WebURLRequest& request, |
| 52 blink::WebNavigationType type, | 49 blink::WebNavigationType type, |
| 53 blink::WebNavigationPolicy default_policy, | 50 blink::WebNavigationPolicy default_policy, |
| 54 bool is_redirect) OVERRIDE; | 51 bool is_redirect) OVERRIDE; |
| 55 | 52 |
| 56 // content::RenderProcessObserver implementation. | |
| 57 virtual void WebKitInitialized() OVERRIDE; | |
| 58 | |
| 59 private: | 53 private: |
| 60 scoped_ptr<AwRenderProcessObserver> aw_render_process_observer_; | 54 scoped_ptr<AwRenderProcessObserver> aw_render_process_observer_; |
| 61 scoped_ptr<visitedlink::VisitedLinkSlave> visited_link_slave_; | 55 scoped_ptr<visitedlink::VisitedLinkSlave> visited_link_slave_; |
| 62 scoped_refptr<AwExecutionTerminationFilter> execution_termination_filter_; | |
| 63 }; | 56 }; |
| 64 | 57 |
| 65 } // namespace android_webview | 58 } // namespace android_webview |
| 66 | 59 |
| 67 #endif // ANDROID_WEBVIEW_RENDERER_AW_CONTENT_RENDERER_CLIENT_H_ | 60 #endif // ANDROID_WEBVIEW_RENDERER_AW_CONTENT_RENDERER_CLIENT_H_ |
| OLD | NEW |