Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3053)

Unified Diff: chrome/browser/ui/autofill/autofill_dialog_types_unittest.cc

Issue 1931043002: Remove requestAutocomplete (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/autofill/autofill_dialog_types_unittest.cc
diff --git a/chrome/browser/ui/autofill/autofill_dialog_types_unittest.cc b/chrome/browser/ui/autofill/autofill_dialog_types_unittest.cc
deleted file mode 100644
index 1eb270fa9432209cbeb5dc3490344204658c5208..0000000000000000000000000000000000000000
--- a/chrome/browser/ui/autofill/autofill_dialog_types_unittest.cc
+++ /dev/null
@@ -1,24 +0,0 @@
-// Copyright 2013 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 "base/strings/utf_string_conversions.h"
-#include "chrome/browser/ui/autofill/autofill_dialog_types.h"
-#include "testing/gtest/include/gtest/gtest.h"
-
-namespace autofill {
-
-// Tests for correct parsing of anchor text ranges.
-TEST(AutofillDialogTypesTest, DialogNotificationLink) {
- base::string16 text(base::ASCIIToUTF16("Notification without anchor text"));
- DialogNotification notification(DialogNotification::WALLET_ERROR, text);
- EXPECT_TRUE(notification.link_range().is_empty());
-
- text = base::ASCIIToUTF16("Notification with |anchor text|");
- notification = DialogNotification(DialogNotification::WALLET_ERROR, text);
- base::char16 bar = '|';
- EXPECT_EQ(base::string16::npos, notification.display_text().find(bar));
- EXPECT_FALSE(notification.link_range().is_empty());
-}
-
-} // namespace autofill
« no previous file with comments | « chrome/browser/ui/autofill/autofill_dialog_types.cc ('k') | chrome/browser/ui/autofill/autofill_dialog_view.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698