Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2424)

Unified Diff: content/child/plugin_param_traits.cc

Issue 63253002: Rename WebKit namespace to blink (part 3) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/child/npapi/webplugin_delegate_impl_win.cc ('k') | content/child/quota_dispatcher.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/child/plugin_param_traits.cc
diff --git a/content/child/plugin_param_traits.cc b/content/child/plugin_param_traits.cc
index 7a3908d2962851f4b29e15e70f0d98dff784c293..27b21dd2e68111b1c96f235208e3ef5a264c4791 100644
--- a/content/child/plugin_param_traits.cc
+++ b/content/child/plugin_param_traits.cc
@@ -123,13 +123,13 @@ bool ParamTraits<NPIdentifier_Param>::Read(const Message* m,
}
void ParamTraits<NPIdentifier_Param>::Log(const param_type& p, std::string* l) {
- if (WebKit::WebBindings::identifierIsString(p.identifier)) {
- NPUTF8* str = WebKit::WebBindings::utf8FromIdentifier(p.identifier);
+ if (blink::WebBindings::identifierIsString(p.identifier)) {
+ NPUTF8* str = blink::WebBindings::utf8FromIdentifier(p.identifier);
l->append(str);
free(str);
} else {
l->append(base::IntToString(
- WebKit::WebBindings::intFromIdentifier(p.identifier)));
+ blink::WebBindings::intFromIdentifier(p.identifier)));
}
}
« no previous file with comments | « content/child/npapi/webplugin_delegate_impl_win.cc ('k') | content/child/quota_dispatcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698