| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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 #import "chrome/browser/ui/cocoa/autofill/autofill_dialog_cocoa.h" | 4 #import "chrome/browser/ui/cocoa/autofill/autofill_dialog_cocoa.h" |
| 5 | 5 |
| 6 #include "base/bind.h" | 6 #include "base/bind.h" |
| 7 #include "base/message_loop/message_loop.h" | 7 #include "base/message_loop/message_loop.h" |
| 8 #include "base/prefs/pref_service.h" | 8 #include "base/prefs/pref_service.h" |
| 9 #include "chrome/browser/profiles/profile.h" | 9 #include "chrome/browser/profiles/profile.h" |
| 10 #include "chrome/browser/ui/autofill/autofill_dialog_controller_impl.h" | 10 #include "chrome/browser/ui/autofill/autofill_dialog_controller_impl.h" |
| 11 #include "chrome/browser/ui/browser.h" | 11 #include "chrome/browser/ui/browser.h" |
| 12 #include "chrome/browser/ui/tabs/tab_strip_model.h" | 12 #include "chrome/browser/ui/tabs/tab_strip_model.h" |
| 13 #include "chrome/common/pref_names.h" | 13 #include "chrome/common/pref_names.h" |
| 14 #include "chrome/test/base/in_process_browser_test.h" | 14 #include "chrome/test/base/in_process_browser_test.h" |
| 15 #include "components/autofill/core/browser/autofill_test_utils.h" | 15 #include "components/autofill/core/browser/autofill_test_utils.h" |
| 16 #include "components/autofill/core/common/form_data.h" | 16 #include "components/autofill/core/common/form_data.h" |
| 17 #include "content/public/browser/web_contents.h" | 17 #include "content/public/browser/web_contents.h" |
| 18 #include "content/public/browser/web_contents_view.h" | 18 #include "content/public/browser/web_contents_view.h" |
| 19 #include "content/public/test/test_utils.h" | 19 #include "content/public/test/test_utils.h" |
| 20 #include "testing/gtest/include/gtest/gtest.h" | 20 #include "testing/gtest/include/gtest/gtest.h" |
| 21 | 21 |
| 22 namespace autofill { | 22 namespace autofill { |
| 23 | 23 |
| 24 namespace { | 24 namespace { |
| 25 | 25 |
| 26 void MockCallback(const FormStructure*) {} | 26 void MockCallback(AutofillManagerDelegate::RequestAutocompleteResult result, |
| 27 const FormStructure*) {} |
| 27 | 28 |
| 28 class TestAutofillDialogController : public AutofillDialogControllerImpl { | 29 class TestAutofillDialogController : public AutofillDialogControllerImpl { |
| 29 public: | 30 public: |
| 30 TestAutofillDialogController( | 31 TestAutofillDialogController( |
| 31 content::WebContents* contents, | 32 content::WebContents* contents, |
| 32 const FormData& form_structure, | 33 const FormData& form_structure, |
| 33 const AutofillMetrics& metric_logger, | 34 const AutofillMetrics& metric_logger, |
| 34 scoped_refptr<content::MessageLoopRunner> runner) | 35 scoped_refptr<content::MessageLoopRunner> runner) |
| 35 : AutofillDialogControllerImpl(contents, | 36 : AutofillDialogControllerImpl(contents, |
| 36 form_structure, | 37 form_structure, |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 controller()->Show(); | 113 controller()->Show(); |
| 113 controller()->OnCancel(); | 114 controller()->OnCancel(); |
| 114 controller()->Hide(); | 115 controller()->Hide(); |
| 115 | 116 |
| 116 RunMessageLoop(); | 117 RunMessageLoop(); |
| 117 } | 118 } |
| 118 | 119 |
| 119 } // namespace | 120 } // namespace |
| 120 | 121 |
| 121 } // namespace autofill | 122 } // namespace autofill |
| OLD | NEW |