| OLD | NEW | 
|    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 20 matching lines...) Expand all  Loading... | 
|   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" |   37 #include "components/autofill/content/common/autofill_messages.h" | 
|   38 #include "components/autofill/core/browser/ui/card_unmask_prompt_view.h" |   38 #include "components/autofill/core/browser/ui/card_unmask_prompt_view.h" | 
|   39 #include "components/autofill/core/common/autofill_pref_names.h" |   39 #include "components/autofill/core/common/autofill_pref_names.h" | 
|   40 #include "components/autofill/core/common/autofill_switches.h" |   40 #include "components/autofill/core/common/autofill_switches.h" | 
|   41 #include "components/browser_sync/browser/profile_sync_service.h" |   41 #include "components/browser_sync/profile_sync_service.h" | 
|   42 #include "components/password_manager/content/browser/content_password_manager_d
     river.h" |   42 #include "components/password_manager/content/browser/content_password_manager_d
     river.h" | 
|   43 #include "components/prefs/pref_service.h" |   43 #include "components/prefs/pref_service.h" | 
|   44 #include "components/signin/core/browser/profile_identity_provider.h" |   44 #include "components/signin/core/browser/profile_identity_provider.h" | 
|   45 #include "components/signin/core/browser/signin_header_helper.h" |   45 #include "components/signin/core/browser/signin_header_helper.h" | 
|   46 #include "components/signin/core/browser/signin_metrics.h" |   46 #include "components/signin/core/browser/signin_metrics.h" | 
|   47 #include "components/user_prefs/user_prefs.h" |   47 #include "components/user_prefs/user_prefs.h" | 
|   48 #include "content/public/browser/navigation_entry.h" |   48 #include "content/public/browser/navigation_entry.h" | 
|   49 #include "content/public/browser/render_frame_host.h" |   49 #include "content/public/browser/render_frame_host.h" | 
|   50 #include "content/public/browser/ssl_status.h" |   50 #include "content/public/browser/ssl_status.h" | 
|   51 #include "ui/gfx/geometry/rect.h" |   51 #include "ui/gfx/geometry/rect.h" | 
| (...skipping 332 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  384   chrome::FindBrowserWithWebContents(web_contents()) |  384   chrome::FindBrowserWithWebContents(web_contents()) | 
|  385       ->window() |  385       ->window() | 
|  386       ->ShowAvatarBubbleFromAvatarButton( |  386       ->ShowAvatarBubbleFromAvatarButton( | 
|  387           BrowserWindow::AVATAR_BUBBLE_MODE_SIGNIN, |  387           BrowserWindow::AVATAR_BUBBLE_MODE_SIGNIN, | 
|  388           signin::ManageAccountsParams(), |  388           signin::ManageAccountsParams(), | 
|  389           signin_metrics::AccessPoint::ACCESS_POINT_AUTOFILL_DROPDOWN); |  389           signin_metrics::AccessPoint::ACCESS_POINT_AUTOFILL_DROPDOWN); | 
|  390 #endif |  390 #endif | 
|  391 } |  391 } | 
|  392  |  392  | 
|  393 }  // namespace autofill |  393 }  // namespace autofill | 
| OLD | NEW |