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

Side by Side Diff: chrome/browser/ui/views/autofill_profiles_view_win.cc

Issue 6204002: Carnitas: Remove chrome/browser/views, update references. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Retrying upload after AppEngine error Created 9 years, 11 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) 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 1294 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698