| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 #ifndef CHROME_BROWSER_UI_PASSWORDS_MANAGE_PASSWORDS_TEST_H_ | 5 #ifndef CHROME_BROWSER_UI_PASSWORDS_MANAGE_PASSWORDS_TEST_H_ |
| 6 #define CHROME_BROWSER_UI_PASSWORDS_MANAGE_PASSWORDS_TEST_H_ | 6 #define CHROME_BROWSER_UI_PASSWORDS_MANAGE_PASSWORDS_TEST_H_ |
| 7 | 7 |
| 8 #include "base/metrics/histogram_samples.h" | 8 #include "base/metrics/histogram_samples.h" |
| 9 #include "base/test/histogram_tester.h" | 9 #include "base/test/histogram_tester.h" |
| 10 #include "chrome/test/base/in_process_browser_test.h" | 10 #include "chrome/test/base/in_process_browser_test.h" |
| 11 #include "components/autofill/core/common/password_form.h" | 11 #include "components/autofill/core/common/password_form.h" |
| 12 #include "testing/gtest/include/gtest/gtest.h" | 12 #include "testing/gtest/include/gtest/gtest.h" |
| 13 | 13 |
| 14 class ManagePasswordsUIControllerMock; | 14 class ManagePasswordsUIControllerMock; |
| 15 class ManagePasswordsIcon; | 15 class ManagePasswordsIcon; |
| 16 | 16 |
| 17 // Test class for the various password management view bits and pieces. Sets | 17 // Test class for the various password management view bits and pieces. Sets |
| 18 // up a ManagePasswordsUIControllerMock, and provides some helper methods | 18 // up a ManagePasswordsUIControllerMock, and provides some helper methods |
| 19 // to poke at the bubble, icon, and controller's state. | 19 // to poke at the bubble, icon, and controller's state. |
| 20 class ManagePasswordsTest : public InProcessBrowserTest { | 20 class ManagePasswordsTest : public InProcessBrowserTest { |
| 21 public: | 21 public: |
| 22 ManagePasswordsTest() {} | 22 ManagePasswordsTest() {} |
| 23 | 23 |
| 24 // InProcessBrowserTest: | 24 // InProcessBrowserTest: |
| 25 virtual void SetUpOnMainThread() OVERRIDE; | 25 virtual void SetUpOnMainThread() override; |
| 26 | 26 |
| 27 // Get the mock UI controller for the current WebContents. | 27 // Get the mock UI controller for the current WebContents. |
| 28 ManagePasswordsUIControllerMock* controller(); | 28 ManagePasswordsUIControllerMock* controller(); |
| 29 | 29 |
| 30 // Get the icon view for the current WebContents. | 30 // Get the icon view for the current WebContents. |
| 31 virtual ManagePasswordsIcon* view() = 0; | 31 virtual ManagePasswordsIcon* view() = 0; |
| 32 | 32 |
| 33 // Execute the browser command to open the manage passwords bubble. | 33 // Execute the browser command to open the manage passwords bubble. |
| 34 void ExecuteManagePasswordsCommand(); | 34 void ExecuteManagePasswordsCommand(); |
| 35 | 35 |
| (...skipping 15 matching lines...) Expand all Loading... |
| 51 autofill::PasswordForm* test_form() { return &test_form_; } | 51 autofill::PasswordForm* test_form() { return &test_form_; } |
| 52 | 52 |
| 53 private: | 53 private: |
| 54 autofill::PasswordForm test_form_; | 54 autofill::PasswordForm test_form_; |
| 55 base::HistogramTester histogram_tester_; | 55 base::HistogramTester histogram_tester_; |
| 56 | 56 |
| 57 DISALLOW_COPY_AND_ASSIGN(ManagePasswordsTest); | 57 DISALLOW_COPY_AND_ASSIGN(ManagePasswordsTest); |
| 58 }; | 58 }; |
| 59 | 59 |
| 60 #endif // CHROME_BROWSER_UI_PASSWORDS_MANAGE_PASSWORDS_TEST_H_ | 60 #endif // CHROME_BROWSER_UI_PASSWORDS_MANAGE_PASSWORDS_TEST_H_ |
| OLD | NEW |