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 <stddef.h> | 10 #include <stddef.h> |
(...skipping 18 matching lines...) Expand all Loading... |
29 void RenderViewCreated(content::RenderView* render_view) override; | 29 void RenderViewCreated(content::RenderView* render_view) override; |
30 bool HasErrorPage(int http_status_code, std::string* error_domain) override; | 30 bool HasErrorPage(int http_status_code, std::string* error_domain) override; |
31 void GetNavigationErrorStrings(content::RenderFrame* render_frame, | 31 void GetNavigationErrorStrings(content::RenderFrame* render_frame, |
32 const blink::WebURLRequest& failed_request, | 32 const blink::WebURLRequest& failed_request, |
33 const blink::WebURLError& error, | 33 const blink::WebURLError& error, |
34 std::string* error_html, | 34 std::string* error_html, |
35 base::string16* error_description) override; | 35 base::string16* error_description) override; |
36 unsigned long long VisitedLinkHash(const char* canonical_url, | 36 unsigned long long VisitedLinkHash(const char* canonical_url, |
37 size_t length) override; | 37 size_t length) override; |
38 bool IsLinkVisited(unsigned long long link_hash) override; | 38 bool IsLinkVisited(unsigned long long link_hash) override; |
39 void AddKeySystems(std::vector<media::KeySystemInfo>* key_systems) override; | 39 void AddSupportedKeySystems( |
| 40 std::vector<std::unique_ptr<::media::KeySystemProperties>>* key_systems) |
| 41 override; |
40 | 42 |
41 bool HandleNavigation(content::RenderFrame* render_frame, | 43 bool HandleNavigation(content::RenderFrame* render_frame, |
42 bool is_content_initiated, | 44 bool is_content_initiated, |
43 int opener_id, | 45 int opener_id, |
44 blink::WebFrame* frame, | 46 blink::WebFrame* frame, |
45 const blink::WebURLRequest& request, | 47 const blink::WebURLRequest& request, |
46 blink::WebNavigationType type, | 48 blink::WebNavigationType type, |
47 blink::WebNavigationPolicy default_policy, | 49 blink::WebNavigationPolicy default_policy, |
48 bool is_redirect) override; | 50 bool is_redirect) override; |
49 bool ShouldUseMediaPlayerForURL(const GURL& url) override; | 51 bool ShouldUseMediaPlayerForURL(const GURL& url) override; |
50 | 52 |
51 private: | 53 private: |
52 std::unique_ptr<AwRenderThreadObserver> aw_render_thread_observer_; | 54 std::unique_ptr<AwRenderThreadObserver> aw_render_thread_observer_; |
53 std::unique_ptr<visitedlink::VisitedLinkSlave> visited_link_slave_; | 55 std::unique_ptr<visitedlink::VisitedLinkSlave> visited_link_slave_; |
54 }; | 56 }; |
55 | 57 |
56 } // namespace android_webview | 58 } // namespace android_webview |
57 | 59 |
58 #endif // ANDROID_WEBVIEW_RENDERER_AW_CONTENT_RENDERER_CLIENT_H_ | 60 #endif // ANDROID_WEBVIEW_RENDERER_AW_CONTENT_RENDERER_CLIENT_H_ |
OLD | NEW |