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

Side by Side Diff: chrome/browser/ui/autofill/mock_autofill_dialog_controller.cc

Issue 21724002: rAc: try really hard not to ellipsize addresses (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: one more Created 7 years, 4 months 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
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_controller.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 MockAutofillDialogController::MockAutofillDialogController() {
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_);
23 DefaultValue<string16>::Set(string16()); 23 DefaultValue<string16>::Set(string16());
24 DefaultValue<ValidityData>::Set(ValidityData()); 24 DefaultValue<ValidityData>::Set(ValidityData());
25 DefaultValue<DialogSignedInState>::Set(REQUIRES_RESPONSE); 25 DefaultValue<DialogSignedInState>::Set(REQUIRES_RESPONSE);
26 DefaultValue<gfx::Image>::Set(gfx::Image()); 26 DefaultValue<gfx::Image>::Set(gfx::Image());
27 DefaultValue<SuggestionState>::Set(SuggestionState(string16(), 27 DefaultValue<SuggestionState>::Set(SuggestionState(false,
28 gfx::Font::NORMAL, 28 string16(),
29 string16(),
29 gfx::Image(), 30 gfx::Image(),
30 string16(), 31 string16(),
31 gfx::Image())); 32 gfx::Image()));
32 33
33 // SECTION_CC *must* have a CREDIT_CARD_VERIFICATION_CODE field. 34 // SECTION_CC *must* have a CREDIT_CARD_VERIFICATION_CODE field.
34 const DetailInput kCreditCardInputs[] = { 35 const DetailInput kCreditCardInputs[] = {
35 { 2, CREDIT_CARD_VERIFICATION_CODE, IDS_AUTOFILL_DIALOG_PLACEHOLDER_CVC } 36 { 2, CREDIT_CARD_VERIFICATION_CODE, IDS_AUTOFILL_DIALOG_PLACEHOLDER_CVC }
36 }; 37 };
37 cc_default_inputs_.push_back(kCreditCardInputs[0]); 38 cc_default_inputs_.push_back(kCreditCardInputs[0]);
38 ON_CALL(*this, RequestedFieldsForSection(SECTION_CC)) 39 ON_CALL(*this, RequestedFieldsForSection(SECTION_CC))
(...skipping 15 matching lines...) Expand all
54 55
55 DefaultValue<SuggestionState>::Clear(); 56 DefaultValue<SuggestionState>::Clear();
56 DefaultValue<gfx::Image>::Clear(); 57 DefaultValue<gfx::Image>::Clear();
57 DefaultValue<DialogSignedInState>::Clear(); 58 DefaultValue<DialogSignedInState>::Clear();
58 DefaultValue<ValidityData>::Clear(); 59 DefaultValue<ValidityData>::Clear();
59 DefaultValue<string16>::Clear(); 60 DefaultValue<string16>::Clear();
60 DefaultValue<const DetailInputs&>::Clear(); 61 DefaultValue<const DetailInputs&>::Clear();
61 } 62 }
62 63
63 } // namespace autofill 64 } // namespace autofill
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698