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

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

Issue 17392006: In components/autofill, move browser/ to core/browser/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase to fix conflicts Created 7 years, 6 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 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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698