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

Side by Side Diff: components/password_manager/core/browser/stub_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/stub_password_manager_client. h" 5 #include "components/password_manager/core/browser/stub_password_manager_client. h"
6 6
7 #include "base/memory/scoped_vector.h" 7 #include "base/memory/scoped_vector.h"
8 #include "components/password_manager/core/browser/password_form_manager.h" 8 #include "components/password_manager/core/browser/password_form_manager.h"
9 9
10 namespace password_manager { 10 namespace password_manager {
(...skipping 29 matching lines...) Expand all
40 return false; 40 return false;
41 } 41 }
42 42
43 void StubPasswordManagerClient::AutomaticPasswordSave( 43 void StubPasswordManagerClient::AutomaticPasswordSave(
44 scoped_ptr<PasswordFormManager> saved_manager) {} 44 scoped_ptr<PasswordFormManager> saved_manager) {}
45 45
46 PrefService* StubPasswordManagerClient::GetPrefs() { return NULL; } 46 PrefService* StubPasswordManagerClient::GetPrefs() { return NULL; }
47 47
48 PasswordStore* StubPasswordManagerClient::GetPasswordStore() { return NULL; } 48 PasswordStore* StubPasswordManagerClient::GetPasswordStore() { return NULL; }
49 49
50 PasswordManagerDriver* StubPasswordManagerClient::GetDriver() { return NULL; }
51
52 } // namespace password_manager 50 } // namespace password_manager
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698