OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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/ui/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" |
(...skipping 1297 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1313 AutoFillDialogObserver* observer, | 1313 AutoFillDialogObserver* observer, |
1314 Profile* profile) { | 1314 Profile* profile) { |
1315 DCHECK(profile); | 1315 DCHECK(profile); |
1316 | 1316 |
1317 PersonalDataManager* personal_data_manager = | 1317 PersonalDataManager* personal_data_manager = |
1318 profile->GetPersonalDataManager(); | 1318 profile->GetPersonalDataManager(); |
1319 DCHECK(personal_data_manager); | 1319 DCHECK(personal_data_manager); |
1320 AutoFillProfilesView::Show(parent, observer, personal_data_manager, profile, | 1320 AutoFillProfilesView::Show(parent, observer, personal_data_manager, profile, |
1321 profile->GetPrefs(), NULL, NULL); | 1321 profile->GetPrefs(), NULL, NULL); |
1322 } | 1322 } |
OLD | NEW |