OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 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_view_delegate.h" | 5 #include "chrome/browser/ui/autofill/mock_autofill_dialog_view_delegate.h" |
| 6 #include "chrome/grit/generated_resources.h" |
6 #include "content/public/browser/native_web_keyboard_event.h" // For gmock. | 7 #include "content/public/browser/native_web_keyboard_event.h" // For gmock. |
7 #include "grit/generated_resources.h" | |
8 #include "ui/base/l10n/l10n_util.h" | 8 #include "ui/base/l10n/l10n_util.h" |
9 #include "ui/gfx/rect.h" // Only needed because gmock needs complete types. | 9 #include "ui/gfx/rect.h" // Only needed because gmock needs complete types. |
10 | 10 |
11 namespace autofill { | 11 namespace autofill { |
12 | 12 |
13 MockAutofillDialogViewDelegate::MockAutofillDialogViewDelegate() { | 13 MockAutofillDialogViewDelegate::MockAutofillDialogViewDelegate() { |
14 using testing::DefaultValue; | 14 using testing::DefaultValue; |
15 using testing::_; | 15 using testing::_; |
16 using testing::Return; | 16 using testing::Return; |
17 using testing::ReturnRef; | 17 using testing::ReturnRef; |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
76 DefaultValue<base::string16>::Clear(); | 76 DefaultValue<base::string16>::Clear(); |
77 DefaultValue<GURL>::Clear(); | 77 DefaultValue<GURL>::Clear(); |
78 DefaultValue<const DetailInputs&>::Clear(); | 78 DefaultValue<const DetailInputs&>::Clear(); |
79 DefaultValue<FieldIconMap>::Clear(); | 79 DefaultValue<FieldIconMap>::Clear(); |
80 DefaultValue<std::vector<DialogNotification> >::Clear(); | 80 DefaultValue<std::vector<DialogNotification> >::Clear(); |
81 DefaultValue<content::WebContents*>::Clear(); | 81 DefaultValue<content::WebContents*>::Clear(); |
82 DefaultValue<Profile*>::Clear(); | 82 DefaultValue<Profile*>::Clear(); |
83 } | 83 } |
84 | 84 |
85 } // namespace autofill | 85 } // namespace autofill |
OLD | NEW |