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

Unified Diff: components/password_manager/core/browser/password_manager_url_collection_experiment_unittest.cc

Issue 777423004: Skeleton code for experiment setup, which will determine should "Allow to collect URL?" bubble be s… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years 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: 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

Powered by Google App Engine
This is Rietveld 408576698