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

Unified Diff: chrome_frame/com_message_event.cc

Issue 112433004: Update uses of UTF conversions in chrome_frame/, chromeos/, components/ to use the base:: namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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 | « chrome_frame/chrome_frame_activex_base.h ('k') | chrome_frame/crash_reporting/vectored_handler_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome_frame/com_message_event.cc
diff --git a/chrome_frame/com_message_event.cc b/chrome_frame/com_message_event.cc
index 747bfa3c8badb9633d3eeb6468ce947e1296ffc3..d122f8c9317808b4116ef0a99e0e90764bcbaeb5 100644
--- a/chrome_frame/com_message_event.cc
+++ b/chrome_frame/com_message_event.cc
@@ -108,15 +108,15 @@ STDMETHODIMP ComMessageEvent::Invoke(DISPID dispid, REFIID iid, LCID lcid,
HRESULT hr = DISP_E_MEMBERNOTFOUND;
switch (dispid) {
case DISPID_MESSAGE_EVENT_DATA:
- hr = GetStringProperty(flags, UTF8ToWide(message_).c_str(), result);
+ hr = GetStringProperty(flags, base::UTF8ToWide(message_).c_str(), result);
break;
case DISPID_MESSAGE_EVENT_ORIGIN:
- hr = GetStringProperty(flags, UTF8ToWide(origin_).c_str(), result);
+ hr = GetStringProperty(flags, base::UTF8ToWide(origin_).c_str(), result);
break;
case DISPID_MESSAGE_EVENT_TYPE:
- hr = GetStringProperty(flags, UTF8ToWide(type_).c_str(), result);
+ hr = GetStringProperty(flags, base::UTF8ToWide(type_).c_str(), result);
break;
case DISPID_MESSAGE_EVENT_LAST_EVENT_ID:
« no previous file with comments | « chrome_frame/chrome_frame_activex_base.h ('k') | chrome_frame/crash_reporting/vectored_handler_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698