| 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/autocheckout_bubble_controller.h" | 5 #include "chrome/browser/ui/autofill/autocheckout_bubble_controller.h" |
| 6 | 6 |
| 7 #include "components/autofill/browser/autofill_metrics.h" | 7 #include "components/autofill/core/browser/autofill_metrics.h" |
| 8 #include "grit/generated_resources.h" | 8 #include "grit/generated_resources.h" |
| 9 #include "grit/ui_resources.h" | 9 #include "grit/ui_resources.h" |
| 10 #include "ui/base/l10n/l10n_util.h" | 10 #include "ui/base/l10n/l10n_util.h" |
| 11 #include "ui/base/resource/resource_bundle.h" | 11 #include "ui/base/resource/resource_bundle.h" |
| 12 #include "ui/gfx/image/image.h" | 12 #include "ui/gfx/image/image.h" |
| 13 #include "ui/gfx/rect_conversions.h" | 13 #include "ui/gfx/rect_conversions.h" |
| 14 | 14 |
| 15 namespace autofill { | 15 namespace autofill { |
| 16 | 16 |
| 17 AutocheckoutBubbleController::AutocheckoutBubbleController( | 17 AutocheckoutBubbleController::AutocheckoutBubbleController( |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 callback_.Run(false); | 92 callback_.Run(false); |
| 93 } | 93 } |
| 94 } | 94 } |
| 95 | 95 |
| 96 void AutocheckoutBubbleController::set_metric_logger( | 96 void AutocheckoutBubbleController::set_metric_logger( |
| 97 AutofillMetrics* metric_logger) { | 97 AutofillMetrics* metric_logger) { |
| 98 metric_logger_.reset(metric_logger); | 98 metric_logger_.reset(metric_logger); |
| 99 } | 99 } |
| 100 | 100 |
| 101 } // namespace autofill | 101 } // namespace autofill |
| OLD | NEW |