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

Side by Side Diff: chrome/browser/ui/autofill/autofill_dialog_types.h

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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 #ifndef CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_DIALOG_TYPES_H_ 5 #ifndef CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_DIALOG_TYPES_H_
6 #define CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_DIALOG_TYPES_H_ 6 #define CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_DIALOG_TYPES_H_
7 7
8 #include <map> 8 #include <map>
9 #include <vector> 9 #include <vector>
10 10
11 #include "base/callback_forward.h" 11 #include "base/callback_forward.h"
12 #include "base/strings/string16.h" 12 #include "base/strings/string16.h"
13 #include "components/autofill/browser/autofill_metrics.h" 13 #include "components/autofill/core/browser/autofill_metrics.h"
14 #include "components/autofill/browser/field_types.h" 14 #include "components/autofill/core/browser/field_types.h"
15 #include "third_party/skia/include/core/SkColor.h" 15 #include "third_party/skia/include/core/SkColor.h"
16 #include "ui/gfx/font.h" 16 #include "ui/gfx/font.h"
17 #include "ui/gfx/image/image.h" 17 #include "ui/gfx/image/image.h"
18 18
19 namespace autofill { 19 namespace autofill {
20 20
21 class AutofillField; 21 class AutofillField;
22 22
23 // The time (in milliseconds) to show the splash page when the dialog is first 23 // The time (in milliseconds) to show the splash page when the dialog is first
24 // started. 24 // started.
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after
181 DialogSection section); 181 DialogSection section);
182 182
183 // Returns the AutofillMetrics::DIALOG_UI_*_ITEM_ADDED metric corresponding 183 // Returns the AutofillMetrics::DIALOG_UI_*_ITEM_ADDED metric corresponding
184 // to the |section|. 184 // to the |section|.
185 AutofillMetrics::DialogUiEvent DialogSectionToUiSelectionChangedEvent( 185 AutofillMetrics::DialogUiEvent DialogSectionToUiSelectionChangedEvent(
186 DialogSection section); 186 DialogSection section);
187 187
188 } // namespace autofill 188 } // namespace autofill
189 189
190 #endif // CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_DIALOG_TYPES_H_ 190 #endif // CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_DIALOG_TYPES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698