summaryrefslogtreecommitdiffstats
path: root/components/plugins
diff options
context:
space:
mode:
authoravi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-12-25 18:15:40 +0000
committeravi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-12-25 18:15:40 +0000
commitd519b817a17433f6c9ea3813d18dfe084659cd1a (patch)
tree2f1eca3347e14d496382e3dd1d0076941d0e654a /components/plugins
parent5156aa40ae3fa326660297ec66f73ee5c69ceb2d (diff)
downloadchromium_src-d519b817a17433f6c9ea3813d18dfe084659cd1a.zip
chromium_src-d519b817a17433f6c9ea3813d18dfe084659cd1a.tar.gz
chromium_src-d519b817a17433f6c9ea3813d18dfe084659cd1a.tar.bz2
Update uses of UTF conversions in chrome_frame/, chromeos/, components/ to use the base:: namespace.
BUG=330556 TEST=no change TBR=ben@chromium.org Review URL: https://codereview.chromium.org/112433004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@242493 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'components/plugins')
-rw-r--r--components/plugins/renderer/plugin_placeholder.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/plugins/renderer/plugin_placeholder.cc b/components/plugins/renderer/plugin_placeholder.cc
index df85dd5..405ac86 100644
--- a/components/plugins/renderer/plugin_placeholder.cc
+++ b/components/plugins/renderer/plugin_placeholder.cc
@@ -164,7 +164,7 @@ void PluginPlaceholder::UpdateMessage() {
std::string script =
"window.setMessage(" + base::GetQuotedJSONString(message_) + ")";
plugin_->web_view()->mainFrame()->executeScript(
- WebScriptSource(ASCIIToUTF16(script)));
+ WebScriptSource(base::ASCIIToUTF16(script)));
}
void PluginPlaceholder::ShowContextMenu(const WebMouseEvent& event) {