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

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

Issue 2352533003: [Autofill] Migrate ChromePasswordManagerClient<-->PasswordGenerationAgent IPCs to mojo. (Closed)
Patch Set: Rebase only Created 4 years, 2 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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/chrome_autofill_client.h" 5 #include "chrome/browser/ui/autofill/chrome_autofill_client.h"
6 6
7 #include <utility> 7 #include <utility>
8 8
9 #include "base/bind.h" 9 #include "base/bind.h"
10 #include "base/command_line.h" 10 #include "base/command_line.h"
(...skipping 16 matching lines...) Expand all
27 #include "chrome/browser/ui/autofill/save_card_bubble_controller_impl.h" 27 #include "chrome/browser/ui/autofill/save_card_bubble_controller_impl.h"
28 #include "chrome/browser/ui/browser_finder.h" 28 #include "chrome/browser/ui/browser_finder.h"
29 #include "chrome/browser/ui/browser_window.h" 29 #include "chrome/browser/ui/browser_window.h"
30 #include "chrome/browser/ui/chrome_pages.h" 30 #include "chrome/browser/ui/chrome_pages.h"
31 #include "chrome/browser/ui/tabs/tab_strip_model_observer.h" 31 #include "chrome/browser/ui/tabs/tab_strip_model_observer.h"
32 #include "chrome/browser/web_data_service_factory.h" 32 #include "chrome/browser/web_data_service_factory.h"
33 #include "chrome/common/features.h" 33 #include "chrome/common/features.h"
34 #include "chrome/common/url_constants.h" 34 #include "chrome/common/url_constants.h"
35 #include "components/autofill/content/browser/content_autofill_driver.h" 35 #include "components/autofill/content/browser/content_autofill_driver.h"
36 #include "components/autofill/content/browser/content_autofill_driver_factory.h" 36 #include "components/autofill/content/browser/content_autofill_driver_factory.h"
37 #include "components/autofill/content/common/autofill_messages.h"
38 #include "components/autofill/core/browser/ui/card_unmask_prompt_view.h" 37 #include "components/autofill/core/browser/ui/card_unmask_prompt_view.h"
39 #include "components/autofill/core/common/autofill_pref_names.h" 38 #include "components/autofill/core/common/autofill_pref_names.h"
40 #include "components/autofill/core/common/autofill_switches.h" 39 #include "components/autofill/core/common/autofill_switches.h"
41 #include "components/browser_sync/profile_sync_service.h" 40 #include "components/browser_sync/profile_sync_service.h"
42 #include "components/password_manager/content/browser/content_password_manager_d river.h" 41 #include "components/password_manager/content/browser/content_password_manager_d river.h"
43 #include "components/prefs/pref_service.h" 42 #include "components/prefs/pref_service.h"
44 #include "components/signin/core/browser/profile_identity_provider.h" 43 #include "components/signin/core/browser/profile_identity_provider.h"
45 #include "components/signin/core/browser/signin_header_helper.h" 44 #include "components/signin/core/browser/signin_header_helper.h"
46 #include "components/signin/core/browser/signin_metrics.h" 45 #include "components/signin/core/browser/signin_metrics.h"
47 #include "components/user_prefs/user_prefs.h" 46 #include "components/user_prefs/user_prefs.h"
(...skipping 336 matching lines...) Expand 10 before | Expand all | Expand 10 after
384 chrome::FindBrowserWithWebContents(web_contents()) 383 chrome::FindBrowserWithWebContents(web_contents())
385 ->window() 384 ->window()
386 ->ShowAvatarBubbleFromAvatarButton( 385 ->ShowAvatarBubbleFromAvatarButton(
387 BrowserWindow::AVATAR_BUBBLE_MODE_SIGNIN, 386 BrowserWindow::AVATAR_BUBBLE_MODE_SIGNIN,
388 signin::ManageAccountsParams(), 387 signin::ManageAccountsParams(),
389 signin_metrics::AccessPoint::ACCESS_POINT_AUTOFILL_DROPDOWN); 388 signin_metrics::AccessPoint::ACCESS_POINT_AUTOFILL_DROPDOWN);
390 #endif 389 #endif
391 } 390 }
392 391
393 } // namespace autofill 392 } // namespace autofill
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698