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 #include "android_webview/renderer/aw_content_renderer_client.h" | 5 #include "android_webview/renderer/aw_content_renderer_client.h" |
6 | 6 |
7 #include "android_webview/common/aw_resource.h" | 7 #include "android_webview/common/aw_resource.h" |
8 #include "android_webview/common/url_constants.h" | 8 #include "android_webview/common/url_constants.h" |
9 #include "android_webview/renderer/aw_render_view_ext.h" | 9 #include "android_webview/renderer/aw_render_view_ext.h" |
10 #include "android_webview/renderer/view_renderer.h" | 10 #include "android_webview/renderer/view_renderer.h" |
11 #include "base/message_loop.h" | 11 #include "base/message_loop.h" |
12 #include "base/strings/utf_string_conversions.h" | 12 #include "base/strings/utf_string_conversions.h" |
| 13 #include "components/autofill/content/renderer/autofill_agent.h" |
| 14 #include "components/autofill/content/renderer/password_autofill_agent.h" |
13 #include "components/visitedlink/renderer/visitedlink_slave.h" | 15 #include "components/visitedlink/renderer/visitedlink_slave.h" |
14 #include "content/public/renderer/render_thread.h" | 16 #include "content/public/renderer/render_thread.h" |
15 #include "googleurl/src/gurl.h" | 17 #include "googleurl/src/gurl.h" |
16 #include "net/base/net_errors.h" | 18 #include "net/base/net_errors.h" |
17 #include "third_party/WebKit/public/platform/WebString.h" | 19 #include "third_party/WebKit/public/platform/WebString.h" |
18 #include "third_party/WebKit/public/platform/WebURL.h" | 20 #include "third_party/WebKit/public/platform/WebURL.h" |
19 #include "third_party/WebKit/public/platform/WebURLError.h" | 21 #include "third_party/WebKit/public/platform/WebURLError.h" |
20 #include "third_party/WebKit/public/platform/WebURLRequest.h" | 22 #include "third_party/WebKit/public/platform/WebURLRequest.h" |
21 #include "third_party/WebKit/Source/WebKit/chromium/public/WebSecurityPolicy.h" | 23 #include "third_party/WebKit/Source/WebKit/chromium/public/WebSecurityPolicy.h" |
22 | 24 |
(...skipping 16 matching lines...) Expand all Loading... |
39 thread->AddObserver(aw_render_process_observer_.get()); | 41 thread->AddObserver(aw_render_process_observer_.get()); |
40 | 42 |
41 visited_link_slave_.reset(new visitedlink::VisitedLinkSlave); | 43 visited_link_slave_.reset(new visitedlink::VisitedLinkSlave); |
42 thread->AddObserver(visited_link_slave_.get()); | 44 thread->AddObserver(visited_link_slave_.get()); |
43 } | 45 } |
44 | 46 |
45 void AwContentRendererClient::RenderViewCreated( | 47 void AwContentRendererClient::RenderViewCreated( |
46 content::RenderView* render_view) { | 48 content::RenderView* render_view) { |
47 AwRenderViewExt::RenderViewCreated(render_view); | 49 AwRenderViewExt::RenderViewCreated(render_view); |
48 ViewRenderer::RenderViewCreated(render_view); | 50 ViewRenderer::RenderViewCreated(render_view); |
| 51 |
| 52 autofill::PasswordAutofillAgent* password_autofill_agent = |
| 53 new autofill::PasswordAutofillAgent(render_view); |
| 54 new autofill::AutofillAgent(render_view, password_autofill_agent); |
49 } | 55 } |
50 | 56 |
51 std::string AwContentRendererClient::GetDefaultEncoding() { | 57 std::string AwContentRendererClient::GetDefaultEncoding() { |
52 return AwResource::GetDefaultTextEncoding(); | 58 return AwResource::GetDefaultTextEncoding(); |
53 } | 59 } |
54 | 60 |
55 bool AwContentRendererClient::HasErrorPage(int http_status_code, | 61 bool AwContentRendererClient::HasErrorPage(int http_status_code, |
56 std::string* error_domain) { | 62 std::string* error_domain) { |
57 return http_status_code >= 400; | 63 return http_status_code >= 400; |
58 } | 64 } |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
96 return visited_link_slave_->IsVisited(link_hash); | 102 return visited_link_slave_->IsVisited(link_hash); |
97 } | 103 } |
98 | 104 |
99 void AwContentRendererClient::PrefetchHostName(const char* hostname, | 105 void AwContentRendererClient::PrefetchHostName(const char* hostname, |
100 size_t length) { | 106 size_t length) { |
101 // TODO(boliu): Implement hostname prefetch for Android WebView. | 107 // TODO(boliu): Implement hostname prefetch for Android WebView. |
102 // Perhaps componentize chrome implementation or move to content/? | 108 // Perhaps componentize chrome implementation or move to content/? |
103 } | 109 } |
104 | 110 |
105 } // namespace android_webview | 111 } // namespace android_webview |
OLD | NEW |