diff options
Diffstat (limited to 'chrome/browser/debugger/devtools_http_protocol_handler.cc')
-rw-r--r-- | chrome/browser/debugger/devtools_http_protocol_handler.cc | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/chrome/browser/debugger/devtools_http_protocol_handler.cc b/chrome/browser/debugger/devtools_http_protocol_handler.cc index 514b506..175de35 100644 --- a/chrome/browser/debugger/devtools_http_protocol_handler.cc +++ b/chrome/browser/debugger/devtools_http_protocol_handler.cc @@ -253,9 +253,7 @@ static PageList GeneratePageList( page_info.id = controller.session_id().id(); page_info.attached = client_host != NULL; page_info.url = entry->url().spec(); - // TODO(evan): use directionality of title? - // http://code.google.com/p/chromium/issues/detail?id=27094 - page_info.title = UTF16ToUTF8(entry->title().string()); + page_info.title = UTF16ToUTF8(entry->title()); page_info.favicon_url = entry->favicon().url().spec(); page_list.push_back(page_info); } |