| 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 | 4 |
| 5 #include "chrome/browser/ui/autofill/mock_autofill_dialog_controller.h" | 5 #include "chrome/browser/ui/autofill/mock_autofill_dialog_view_delegate.h" |
| 6 #include "content/public/browser/native_web_keyboard_event.h" // For gmock. | 6 #include "content/public/browser/native_web_keyboard_event.h" // For gmock. |
| 7 #include "grit/generated_resources.h" | 7 #include "grit/generated_resources.h" |
| 8 #include "ui/gfx/rect.h" // Only needed because gmock needs complete types. | 8 #include "ui/gfx/rect.h" // Only needed because gmock needs complete types. |
| 9 | 9 |
| 10 namespace autofill { | 10 namespace autofill { |
| 11 | 11 |
| 12 MockAutofillDialogController::MockAutofillDialogController() { | 12 MockAutofillDialogViewDelegate::MockAutofillDialogViewDelegate() { |
| 13 using testing::DefaultValue; | 13 using testing::DefaultValue; |
| 14 using testing::_; | 14 using testing::_; |
| 15 using testing::Return; | 15 using testing::Return; |
| 16 using testing::ReturnRef; | 16 using testing::ReturnRef; |
| 17 | 17 |
| 18 // N.B. Setting DefaultValue in the ctor and deleting it in the dtor will | 18 // N.B. Setting DefaultValue in the ctor and deleting it in the dtor will |
| 19 // only work if this Mock is not used together with other mock code that | 19 // only work if this Mock is not used together with other mock code that |
| 20 // sets different defaults. If tests utilizing the MockController start | 20 // sets different defaults. If tests utilizing the MockController start |
| 21 // breaking because of this, use ON_CALL instead. | 21 // breaking because of this, use ON_CALL instead. |
| 22 DefaultValue<const DetailInputs&>::Set(default_inputs_); | 22 DefaultValue<const DetailInputs&>::Set(default_inputs_); |
| (...skipping 19 matching lines...) Expand all Loading... |
| 42 .WillByDefault(Return(ui::DIALOG_BUTTON_OK | ui::DIALOG_BUTTON_CANCEL)); | 42 .WillByDefault(Return(ui::DIALOG_BUTTON_OK | ui::DIALOG_BUTTON_CANCEL)); |
| 43 ON_CALL(*this, LegalDocumentLinks()).WillByDefault(ReturnRef(range_)); | 43 ON_CALL(*this, LegalDocumentLinks()).WillByDefault(ReturnRef(range_)); |
| 44 | 44 |
| 45 // Activate all sections but CC_BILLING - default for the real | 45 // Activate all sections but CC_BILLING - default for the real |
| 46 // controller implementation, too. | 46 // controller implementation, too. |
| 47 ON_CALL(*this, SectionIsActive(_)).WillByDefault(Return(true)); | 47 ON_CALL(*this, SectionIsActive(_)).WillByDefault(Return(true)); |
| 48 ON_CALL(*this, SectionIsActive(SECTION_CC_BILLING)) | 48 ON_CALL(*this, SectionIsActive(SECTION_CC_BILLING)) |
| 49 .WillByDefault(Return(false)); | 49 .WillByDefault(Return(false)); |
| 50 } | 50 } |
| 51 | 51 |
| 52 MockAutofillDialogController::~MockAutofillDialogController() { | 52 MockAutofillDialogViewDelegate::~MockAutofillDialogViewDelegate() { |
| 53 using testing::DefaultValue; | 53 using testing::DefaultValue; |
| 54 | 54 |
| 55 DefaultValue<SuggestionState>::Clear(); | 55 DefaultValue<SuggestionState>::Clear(); |
| 56 DefaultValue<gfx::Image>::Clear(); | 56 DefaultValue<gfx::Image>::Clear(); |
| 57 DefaultValue<DialogSignedInState>::Clear(); | 57 DefaultValue<DialogSignedInState>::Clear(); |
| 58 DefaultValue<ValidityData>::Clear(); | 58 DefaultValue<ValidityData>::Clear(); |
| 59 DefaultValue<string16>::Clear(); | 59 DefaultValue<string16>::Clear(); |
| 60 DefaultValue<const DetailInputs&>::Clear(); | 60 DefaultValue<const DetailInputs&>::Clear(); |
| 61 } | 61 } |
| 62 | 62 |
| 63 } // namespace autofill | 63 } // namespace autofill |
| OLD | NEW |