Index: chrome/browser/views/bookmark_bar_view_unittest.cc |
diff --git a/chrome/browser/views/bookmark_bar_view_unittest.cc b/chrome/browser/views/bookmark_bar_view_unittest.cc |
index 29be6788f706b663170607b84a01d958586cfe02..126c668f1fa0efa7524e04f49e46db9cd8f14598 100644 |
--- a/chrome/browser/views/bookmark_bar_view_unittest.cc |
+++ b/chrome/browser/views/bookmark_bar_view_unittest.cc |
@@ -2,6 +2,7 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
+#include "base/utf_string_conversions.h" |
#include "chrome/browser/bookmarks/bookmark_model.h" |
#include "chrome/browser/chrome_thread.h" |
#include "chrome/browser/views/bookmark_bar_view.h" |
@@ -26,7 +27,7 @@ TEST_F(BookmarkBarViewTest, SwitchProfile) { |
profile()->GetBookmarkModel()->AddURL( |
profile()->GetBookmarkModel()->GetBookmarkBarNode(), |
0, |
- L"blah", |
+ ASCIIToUTF16("blah"), |
GURL("http://www.google.com")); |
BookmarkBarView bookmark_bar(profile(), browser()); |