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

Side by Side Diff: components/password_manager/core/browser/password_manager_client.cc

Issue 707173004: Refactor Autofill for out of process iframes (OOPIF). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: mem leak Created 6 years 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 "components/password_manager/core/browser/password_manager_client.h" 5 #include "components/password_manager/core/browser/password_manager_client.h"
6 6
7 namespace password_manager { 7 namespace password_manager {
8 8
9 bool PasswordManagerClient::IsAutomaticPasswordSavingEnabled() const { 9 bool PasswordManagerClient::IsAutomaticPasswordSavingEnabled() const {
10 return false; 10 return false;
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 // implemented, never prompt the user for keychain access. 57 // implemented, never prompt the user for keychain access.
58 // Effectively, this means that passwords stored by Chrome still work, 58 // Effectively, this means that passwords stored by Chrome still work,
59 // since Chrome can access those without a prompt, but passwords stored by 59 // since Chrome can access those without a prompt, but passwords stored by
60 // Safari, Firefox, or Chrome Canary will not work. Note that the latest 60 // Safari, Firefox, or Chrome Canary will not work. Note that the latest
61 // build of Safari and Firefox don't create keychain items with the 61 // build of Safari and Firefox don't create keychain items with the
62 // relevant tags anyways (7/11/2014). 62 // relevant tags anyways (7/11/2014).
63 // http://crbug.com/178358 63 // http://crbug.com/178358
64 return PasswordStore::DISALLOW_PROMPT; 64 return PasswordStore::DISALLOW_PROMPT;
65 } 65 }
66 66
67 bool PasswordManagerClient::DidLastPageLoadEncounterSSLErrors() {
68 return false;
69 }
70
71 bool PasswordManagerClient::IsOffTheRecord() {
72 return false;
73 }
74
75 PasswordManager* PasswordManagerClient::GetPasswordManager() {
76 return nullptr;
77 }
78
67 } // namespace password_manager 79 } // namespace password_manager
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698