OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "android_webview/common/aw_content_client.h" |
| 6 |
| 7 #include "base/basictypes.h" |
| 8 #include "ui/base/l10n/l10n_util.h" |
| 9 #include "ui/base/resource/resource_bundle.h" |
| 10 #include "webkit/user_agent/user_agent_util.h" |
| 11 |
| 12 namespace android_webview { |
| 13 |
| 14 std::string AwContentClient::GetProduct() const { |
| 15 // "Version/4.0" had been hardcoded in the legacy WebView. |
| 16 return std::string("Version/4.0"); |
| 17 } |
| 18 |
| 19 std::string AwContentClient::GetUserAgent() const { |
| 20 return webkit_glue::BuildUserAgentFromProduct(GetProduct()); |
| 21 } |
| 22 |
| 23 string16 AwContentClient::GetLocalizedString(int message_id) const { |
| 24 // TODO(boliu): Used only by WebKit, so only bundle those resources for |
| 25 // Android WebView. |
| 26 return l10n_util::GetStringUTF16(message_id); |
| 27 } |
| 28 |
| 29 base::StringPiece AwContentClient::GetDataResource( |
| 30 int resource_id, |
| 31 ui::ScaleFactor scale_factor) const { |
| 32 // TODO(boliu): Used only by WebKit, so only bundle those resources for |
| 33 // Android WebView. |
| 34 return ResourceBundle::GetSharedInstance().GetRawDataResource( |
| 35 resource_id, scale_factor); |
| 36 } |
| 37 |
| 38 } // namespace android_webview |
| 39 |
OLD | NEW |