| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "base/macros.h" | 5 #include "base/macros.h" |
| 6 #include "base/prefs/pref_service.h" | |
| 7 #include "chrome/browser/password_manager/auto_signin_first_run_infobar_delegate
.h" | 6 #include "chrome/browser/password_manager/auto_signin_first_run_infobar_delegate
.h" |
| 8 #include "chrome/browser/profiles/profile.h" | 7 #include "chrome/browser/profiles/profile.h" |
| 9 #include "chrome/test/base/chrome_render_view_host_test_harness.h" | 8 #include "chrome/test/base/chrome_render_view_host_test_harness.h" |
| 10 #include "components/password_manager/core/common/password_manager_pref_names.h" | 9 #include "components/password_manager/core/common/password_manager_pref_names.h" |
| 10 #include "components/prefs/pref_service.h" |
| 11 #include "content/public/browser/web_contents.h" | 11 #include "content/public/browser/web_contents.h" |
| 12 #include "testing/gmock/include/gmock/gmock.h" | 12 #include "testing/gmock/include/gmock/gmock.h" |
| 13 #include "testing/gtest/include/gtest/gtest.h" | 13 #include "testing/gtest/include/gtest/gtest.h" |
| 14 | 14 |
| 15 namespace { | 15 namespace { |
| 16 | 16 |
| 17 class TestAutoSigninFirstRunInfoBarDelegate | 17 class TestAutoSigninFirstRunInfoBarDelegate |
| 18 : public AutoSigninFirstRunInfoBarDelegate { | 18 : public AutoSigninFirstRunInfoBarDelegate { |
| 19 public: | 19 public: |
| 20 explicit TestAutoSigninFirstRunInfoBarDelegate( | 20 explicit TestAutoSigninFirstRunInfoBarDelegate( |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 TEST_F(AutoSigninFirstRunInfoBarDelegateTest, | 71 TEST_F(AutoSigninFirstRunInfoBarDelegateTest, |
| 72 CheckResetOfPrefAfterFirstRunMessageWasShownOnAccept) { | 72 CheckResetOfPrefAfterFirstRunMessageWasShownOnAccept) { |
| 73 prefs()->SetBoolean( | 73 prefs()->SetBoolean( |
| 74 password_manager::prefs::kWasAutoSignInFirstRunExperienceShown, false); | 74 password_manager::prefs::kWasAutoSignInFirstRunExperienceShown, false); |
| 75 scoped_ptr<ConfirmInfoBarDelegate> infobar(CreateDelegate()); | 75 scoped_ptr<ConfirmInfoBarDelegate> infobar(CreateDelegate()); |
| 76 EXPECT_TRUE(infobar->Accept()); | 76 EXPECT_TRUE(infobar->Accept()); |
| 77 infobar.reset(); | 77 infobar.reset(); |
| 78 EXPECT_TRUE(prefs()->GetBoolean( | 78 EXPECT_TRUE(prefs()->GetBoolean( |
| 79 password_manager::prefs::kWasAutoSignInFirstRunExperienceShown)); | 79 password_manager::prefs::kWasAutoSignInFirstRunExperienceShown)); |
| 80 } | 80 } |
| OLD | NEW |