| Index: content/test/layouttest_support.cc
|
| diff --git a/content/test/layouttest_support.cc b/content/test/layouttest_support.cc
|
| index 58614e6c86f9a057f0935b5d652b942ecce6412e..b104a292b9d32ababf3a4c6ffc51844e0f9d536d 100644
|
| --- a/content/test/layouttest_support.cc
|
| +++ b/content/test/layouttest_support.cc
|
| @@ -1072,8 +1072,8 @@ void DisableAutoResizeMode(RenderView* render_view, const WebSize& new_size) {
|
| // Returns True if node1 < node2.
|
| bool HistoryEntryCompareLess(HistoryEntry::HistoryNode* node1,
|
| HistoryEntry::HistoryNode* node2) {
|
| - base::string16 target1 = node1->item().target();
|
| - base::string16 target2 = node2->item().target();
|
| + std::string target1 = node1->item().target().ascii();
|
| + std::string target2 = node2->item().target().ascii();
|
| return base::CompareCaseInsensitiveASCII(target1, target2) < 0;
|
| }
|
|
|
|
|