OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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/views/autofill_profiles_view_win.h" | 5 #include "chrome/browser/views/autofill_profiles_view_win.h" |
6 | 6 |
7 #include <vsstyle.h> | 7 #include <vsstyle.h> |
8 #include <vssym32.h> | 8 #include <vssym32.h> |
9 | 9 |
10 #include "app/l10n_util.h" | 10 #include "app/l10n_util.h" |
11 #include "app/resource_bundle.h" | 11 #include "app/resource_bundle.h" |
12 #include "base/message_loop.h" | 12 #include "base/message_loop.h" |
13 #include "base/string16.h" | 13 #include "base/string16.h" |
14 #include "base/string_number_conversions.h" | 14 #include "base/string_number_conversions.h" |
15 #include "base/time.h" | 15 #include "base/time.h" |
16 #include "base/utf_string_conversions.h" | 16 #include "base/utf_string_conversions.h" |
17 #include "chrome/browser/autofill/autofill_manager.h" | 17 #include "chrome/browser/autofill/autofill_manager.h" |
18 #include "chrome/browser/autofill/phone_number.h" | 18 #include "chrome/browser/autofill/phone_number.h" |
19 #include "chrome/browser/browser.h" | |
20 #include "chrome/browser/browser_list.h" | 19 #include "chrome/browser/browser_list.h" |
21 #include "chrome/browser/browser_window.h" | 20 #include "chrome/browser/browser_window.h" |
22 #include "chrome/browser/metrics/user_metrics.h" | 21 #include "chrome/browser/metrics/user_metrics.h" |
23 #include "chrome/browser/prefs/pref_service.h" | 22 #include "chrome/browser/prefs/pref_service.h" |
24 #include "chrome/browser/profile.h" | 23 #include "chrome/browser/profile.h" |
| 24 #include "chrome/browser/ui/browser.h" |
25 #include "chrome/browser/views/list_background.h" | 25 #include "chrome/browser/views/list_background.h" |
26 #include "chrome/browser/window_sizer.h" | 26 #include "chrome/browser/window_sizer.h" |
27 #include "chrome/common/notification_details.h" | 27 #include "chrome/common/notification_details.h" |
28 #include "chrome/common/pref_names.h" | 28 #include "chrome/common/pref_names.h" |
29 #include "gfx/canvas.h" | 29 #include "gfx/canvas.h" |
30 #include "gfx/native_theme_win.h" | 30 #include "gfx/native_theme_win.h" |
31 #include "gfx/size.h" | 31 #include "gfx/size.h" |
32 #include "grit/app_resources.h" | 32 #include "grit/app_resources.h" |
33 #include "grit/generated_resources.h" | 33 #include "grit/generated_resources.h" |
34 #include "grit/theme_resources.h" | 34 #include "grit/theme_resources.h" |
(...skipping 1275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1310 AutoFillDialogObserver* observer, | 1310 AutoFillDialogObserver* observer, |
1311 Profile* profile) { | 1311 Profile* profile) { |
1312 DCHECK(profile); | 1312 DCHECK(profile); |
1313 | 1313 |
1314 PersonalDataManager* personal_data_manager = | 1314 PersonalDataManager* personal_data_manager = |
1315 profile->GetPersonalDataManager(); | 1315 profile->GetPersonalDataManager(); |
1316 DCHECK(personal_data_manager); | 1316 DCHECK(personal_data_manager); |
1317 AutoFillProfilesView::Show(parent, observer, personal_data_manager, profile, | 1317 AutoFillProfilesView::Show(parent, observer, personal_data_manager, profile, |
1318 profile->GetPrefs(), NULL, NULL); | 1318 profile->GetPrefs(), NULL, NULL); |
1319 } | 1319 } |
OLD | NEW |