Index: components/password_manager/core/browser/password_manager_url_collection_experiment_unittest.cc |
diff --git a/components/password_manager/core/browser/password_manager_url_collection_experiment_unittest.cc b/components/password_manager/core/browser/password_manager_url_collection_experiment_unittest.cc |
deleted file mode 100644 |
index 12a4c04f811969e16fc26977fccbe616ea3d133d..0000000000000000000000000000000000000000 |
--- a/components/password_manager/core/browser/password_manager_url_collection_experiment_unittest.cc |
+++ /dev/null |
@@ -1,27 +0,0 @@ |
-// Copyright 2014 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 "components/password_manager/core/browser/password_manager_url_collection_experiment.h" |
- |
-#include "base/files/scoped_temp_dir.h" |
-#include "base/prefs/pref_service.h" |
-#include "base/prefs/testing_pref_service.h" |
-#include "testing/gtest/include/gtest/gtest.h" |
- |
-namespace { |
- |
-class PasswordManagerUrlsCollectionExperimentTest : public testing::Test { |
- public: |
- PrefService* prefs() { return &pref_service_; } |
- |
- private: |
- TestingPrefServiceSimple pref_service_; |
-}; |
- |
-TEST_F(PasswordManagerUrlsCollectionExperimentTest, TestDefault) { |
- EXPECT_FALSE( |
- password_manager::urls_collection_experiment::ShouldShowBubble(prefs())); |
-} |
- |
-} // namespace |