| Index: chrome/browser/debugger/debugger_host_impl.cpp
|
| ===================================================================
|
| --- chrome/browser/debugger/debugger_host_impl.cpp (revision 10809)
|
| +++ chrome/browser/debugger/debugger_host_impl.cpp (working copy)
|
| @@ -65,7 +65,7 @@
|
| };
|
|
|
|
|
| -DebuggerHostImpl::DebuggerHostImpl(DebuggerInputOutput* io)
|
| +DebuggerHostImpl::DebuggerHostImpl(DebuggerInputOutput* io)
|
| : io_(io),
|
| debugger_ready_(true) {
|
| }
|
| @@ -98,7 +98,7 @@
|
| std::wstring title;
|
| const TabContents* t = GetTabContentsBeingDebugged();
|
| if (t) {
|
| - title = t->GetTitle();
|
| + title = UTF16ToWideHack(t->GetTitle());
|
| }
|
|
|
| ListValue* argv = new ListValue;
|
| @@ -178,7 +178,7 @@
|
| return;
|
| }
|
| io_->SetDebuggerBreak(brk == L"true");
|
| - }
|
| + }
|
| }
|
|
|
| TabContents* DebuggerHostImpl::GetTabContentsBeingDebugged() const {
|
|
|