diff options
Diffstat (limited to 'chrome/browser/notifications')
-rw-r--r-- | chrome/browser/notifications/notifications_interactive_uitest.cc | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/chrome/browser/notifications/notifications_interactive_uitest.cc b/chrome/browser/notifications/notifications_interactive_uitest.cc index 7affc66..d2ace68 100644 --- a/chrome/browser/notifications/notifications_interactive_uitest.cc +++ b/chrome/browser/notifications/notifications_interactive_uitest.cc @@ -2,7 +2,6 @@ // 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/test/automation/browser_proxy.h" #include "chrome/test/automation/tab_proxy.h" #include "chrome/test/ui/ui_test.h" @@ -36,8 +35,8 @@ TEST_F(NotificationsPermissionTest, FLAKY_TestUserGestureInfobar) { // That's considered a user gesture to webkit, and should produce an infobar. bool result; ASSERT_TRUE(tab->ExecuteAndExtractBool( - string16(), - ASCIIToUTF16("window.domAutomationController.send(request());"), + L"", + L"window.domAutomationController.send(request());", &result)); EXPECT_TRUE(result); |