Index: chrome/browser/gtk/bookmark_bar_gtk_unittest.cc |
diff --git a/chrome/browser/gtk/bookmark_bar_gtk_unittest.cc b/chrome/browser/gtk/bookmark_bar_gtk_unittest.cc |
index 3f9fdcf31a18a4da67d22cd86cf350de31c68c8b..1be108c44be88e9e2892f3ad823c0937418d0189 100644 |
--- a/chrome/browser/gtk/bookmark_bar_gtk_unittest.cc |
+++ b/chrome/browser/gtk/bookmark_bar_gtk_unittest.cc |
@@ -1,9 +1,10 @@ |
-// Copyright (c) 2009 The Chromium Authors. All rights reserved. |
+// Copyright (c) 2010 The Chromium Authors. All rights reserved. |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
#include "chrome/browser/gtk/bookmark_bar_gtk.h" |
+#include "base/utf_string_conversions.h" |
#include "chrome/browser/bookmarks/bookmark_model.h" |
#include "chrome/browser/browser.h" |
#include "chrome/browser/chrome_thread.h" |
@@ -59,7 +60,7 @@ TEST_F(BookmarkBarGtkUnittest, HidesHelpMessageWithBookmark) { |
const BookmarkNode* parent = model->GetBookmarkBarNode(); |
model->AddURL(parent, parent->GetChildCount(), |
- L"title", GURL("http://one.com")); |
+ ASCIIToUTF16("title"), GURL("http://one.com")); |
bookmark_bar_->Loaded(model); |
EXPECT_FALSE(bookmark_bar_->show_instructions_); |
@@ -70,9 +71,9 @@ TEST_F(BookmarkBarGtkUnittest, BuildsButtons) { |
const BookmarkNode* parent = model->GetBookmarkBarNode(); |
model->AddURL(parent, parent->GetChildCount(), |
- L"title", GURL("http://one.com")); |
+ ASCIIToUTF16("title"), GURL("http://one.com")); |
model->AddURL(parent, parent->GetChildCount(), |
- L"other", GURL("http://two.com")); |
+ ASCIIToUTF16("other"), GURL("http://two.com")); |
bookmark_bar_->Loaded(model); |