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 "base/message_loop.h" | 10 #include "base/message_loop.h" |
11 #include "base/strings/utf_string_conversions.h" | 11 #include "base/strings/utf_string_conversions.h" |
12 #include "components/visitedlink/renderer/visitedlink_slave.h" | 12 #include "components/visitedlink/renderer/visitedlink_slave.h" |
13 #include "content/public/renderer/render_thread.h" | 13 #include "content/public/renderer/render_thread.h" |
14 #include "googleurl/src/gurl.h" | 14 #include "googleurl/src/gurl.h" |
15 #include "net/base/net_errors.h" | 15 #include "net/base/net_errors.h" |
16 #include "third_party/WebKit/public/platform/WebString.h" | 16 #include "third_party/WebKit/public/platform/WebString.h" |
17 #include "third_party/WebKit/public/platform/WebURL.h" | 17 #include "third_party/WebKit/public/platform/WebURL.h" |
18 #include "third_party/WebKit/public/platform/WebURLError.h" | 18 #include "third_party/WebKit/public/platform/WebURLError.h" |
19 #include "third_party/WebKit/public/platform/WebURLRequest.h" | 19 #include "third_party/WebKit/public/platform/WebURLRequest.h" |
20 #include "third_party/WebKit/Source/WebKit/chromium/public/WebSecurityPolicy.h" | 20 #include "third_party/WebKit/public/web/WebSecurityPolicy.h" |
21 | 21 |
22 namespace android_webview { | 22 namespace android_webview { |
23 | 23 |
24 AwContentRendererClient::AwContentRendererClient() { | 24 AwContentRendererClient::AwContentRendererClient() { |
25 } | 25 } |
26 | 26 |
27 AwContentRendererClient::~AwContentRendererClient() { | 27 AwContentRendererClient::~AwContentRendererClient() { |
28 } | 28 } |
29 | 29 |
30 void AwContentRendererClient::RenderThreadStarted() { | 30 void AwContentRendererClient::RenderThreadStarted() { |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
94 return visited_link_slave_->IsVisited(link_hash); | 94 return visited_link_slave_->IsVisited(link_hash); |
95 } | 95 } |
96 | 96 |
97 void AwContentRendererClient::PrefetchHostName(const char* hostname, | 97 void AwContentRendererClient::PrefetchHostName(const char* hostname, |
98 size_t length) { | 98 size_t length) { |
99 // TODO(boliu): Implement hostname prefetch for Android WebView. | 99 // TODO(boliu): Implement hostname prefetch for Android WebView. |
100 // Perhaps componentize chrome implementation or move to content/? | 100 // Perhaps componentize chrome implementation or move to content/? |
101 } | 101 } |
102 | 102 |
103 } // namespace android_webview | 103 } // namespace android_webview |
OLD | NEW |