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

Side by Side Diff: chrome/browser/password_manager/chrome_password_manager_client.cc

Issue 1658793002: Update chrome for new prefs location. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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/password_manager/chrome_password_manager_client.h" 5 #include "chrome/browser/password_manager/chrome_password_manager_client.h"
6 6
7 #include <string> 7 #include <string>
8 #include <utility> 8 #include <utility>
9 9
10 #include "base/bind.h" 10 #include "base/bind.h"
11 #include "base/bind_helpers.h" 11 #include "base/bind_helpers.h"
12 #include "base/command_line.h" 12 #include "base/command_line.h"
13 #include "base/memory/singleton.h" 13 #include "base/memory/singleton.h"
14 #include "base/metrics/field_trial.h" 14 #include "base/metrics/field_trial.h"
15 #include "base/metrics/histogram.h" 15 #include "base/metrics/histogram.h"
16 #include "base/prefs/pref_service.h"
17 #include "build/build_config.h" 16 #include "build/build_config.h"
18 #include "chrome/browser/browsing_data/browsing_data_helper.h" 17 #include "chrome/browser/browsing_data/browsing_data_helper.h"
19 #include "chrome/browser/password_manager/password_store_factory.h" 18 #include "chrome/browser/password_manager/password_store_factory.h"
20 #include "chrome/browser/profiles/profile.h" 19 #include "chrome/browser/profiles/profile.h"
21 #include "chrome/browser/signin/signin_manager_factory.h" 20 #include "chrome/browser/signin/signin_manager_factory.h"
22 #include "chrome/browser/sync/profile_sync_service_factory.h" 21 #include "chrome/browser/sync/profile_sync_service_factory.h"
23 #include "chrome/browser/ui/autofill/password_generation_popup_controller_impl.h " 22 #include "chrome/browser/ui/autofill/password_generation_popup_controller_impl.h "
24 #include "chrome/browser/ui/passwords/passwords_client_ui_delegate.h" 23 #include "chrome/browser/ui/passwords/passwords_client_ui_delegate.h"
25 #include "chrome/common/channel_info.h" 24 #include "chrome/common/channel_info.h"
26 #include "chrome/common/chrome_switches.h" 25 #include "chrome/common/chrome_switches.h"
(...skipping 14 matching lines...) Expand all
41 #include "components/password_manager/core/browser/password_form_manager.h" 40 #include "components/password_manager/core/browser/password_form_manager.h"
42 #include "components/password_manager/core/browser/password_manager_internals_se rvice.h" 41 #include "components/password_manager/core/browser/password_manager_internals_se rvice.h"
43 #include "components/password_manager/core/browser/password_manager_metrics_util .h" 42 #include "components/password_manager/core/browser/password_manager_metrics_util .h"
44 #include "components/password_manager/core/browser/password_manager_settings_mig ration_experiment.h" 43 #include "components/password_manager/core/browser/password_manager_settings_mig ration_experiment.h"
45 #include "components/password_manager/core/browser/password_manager_util.h" 44 #include "components/password_manager/core/browser/password_manager_util.h"
46 #include "components/password_manager/core/common/credential_manager_types.h" 45 #include "components/password_manager/core/common/credential_manager_types.h"
47 #include "components/password_manager/core/common/password_manager_features.h" 46 #include "components/password_manager/core/common/password_manager_features.h"
48 #include "components/password_manager/core/common/password_manager_pref_names.h" 47 #include "components/password_manager/core/common/password_manager_pref_names.h"
49 #include "components/password_manager/core/common/password_manager_switches.h" 48 #include "components/password_manager/core/common/password_manager_switches.h"
50 #include "components/password_manager/sync/browser/password_sync_util.h" 49 #include "components/password_manager/sync/browser/password_sync_util.h"
50 #include "components/prefs/pref_service.h"
51 #include "components/signin/core/browser/signin_manager.h" 51 #include "components/signin/core/browser/signin_manager.h"
52 #include "components/version_info/version_info.h" 52 #include "components/version_info/version_info.h"
53 #include "content/public/browser/navigation_entry.h" 53 #include "content/public/browser/navigation_entry.h"
54 #include "content/public/browser/render_view_host.h" 54 #include "content/public/browser/render_view_host.h"
55 #include "content/public/browser/web_contents.h" 55 #include "content/public/browser/web_contents.h"
56 #include "google_apis/gaia/gaia_urls.h" 56 #include "google_apis/gaia/gaia_urls.h"
57 #include "net/base/url_util.h" 57 #include "net/base/url_util.h"
58 #include "third_party/re2/src/re2/re2.h" 58 #include "third_party/re2/src/re2/re2.h"
59 59
60 #if defined(OS_MACOSX) || BUILDFLAG(ANDROID_JAVA_UI) 60 #if defined(OS_MACOSX) || BUILDFLAG(ANDROID_JAVA_UI)
(...skipping 490 matching lines...) Expand 10 before | Expand all | Expand 10 after
551 551
552 const password_manager::CredentialsFilter* 552 const password_manager::CredentialsFilter*
553 ChromePasswordManagerClient::GetStoreResultFilter() const { 553 ChromePasswordManagerClient::GetStoreResultFilter() const {
554 return &credentials_filter_; 554 return &credentials_filter_;
555 } 555 }
556 556
557 const password_manager::LogManager* ChromePasswordManagerClient::GetLogManager() 557 const password_manager::LogManager* ChromePasswordManagerClient::GetLogManager()
558 const { 558 const {
559 return log_manager_.get(); 559 return log_manager_.get();
560 } 560 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698