diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-04 06:13:02 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-04 06:13:02 +0000 |
commit | cee9de4e4af9a1d441a1540c6c7a676c35042994 (patch) | |
tree | ac2034b3195281551dde58be9f4b2c32d8b8f8c0 /chrome/browser/debugger/debugger_host_impl.cpp | |
parent | d01902d70e46a90fc24d3a442805a4a665d373ca (diff) | |
download | chromium_src-cee9de4e4af9a1d441a1540c6c7a676c35042994.zip chromium_src-cee9de4e4af9a1d441a1540c6c7a676c35042994.tar.gz chromium_src-cee9de4e4af9a1d441a1540c6c7a676c35042994.tar.bz2 |
Fix the build with some forgotten string conversions on non-Windows.
Review URL: http://codereview.chromium.org/40099
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@10875 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/debugger/debugger_host_impl.cpp')
-rw-r--r-- | chrome/browser/debugger/debugger_host_impl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/debugger/debugger_host_impl.cpp b/chrome/browser/debugger/debugger_host_impl.cpp index beeb398..0a2bb81 100644 --- a/chrome/browser/debugger/debugger_host_impl.cpp +++ b/chrome/browser/debugger/debugger_host_impl.cpp @@ -98,7 +98,7 @@ void DebuggerHostImpl::OnDebugAttach() { std::wstring title; const TabContents* t = GetTabContentsBeingDebugged(); if (t) { - title = UTF16ToWideHack(t->GetTitle()); + title = t->GetTitle(); } ListValue* argv = new ListValue; |