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

Side by Side Diff: chrome/browser/password_manager/password_store_win.h

Issue 106053008: [Mac] Passwords: Don't always prompt to access passwords saved by other browsers (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix yet another compile failure. Created 7 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 #ifndef CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_WIN_H_ 5 #ifndef CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_WIN_H_
6 #define CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_WIN_H_ 6 #define CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_WIN_H_
7 7
8 #include "base/memory/scoped_ptr.h" 8 #include "base/memory/scoped_ptr.h"
9 #include "chrome/browser/password_manager/password_store_default.h" 9 #include "chrome/browser/password_manager/password_store_default.h"
10 10
(...skipping 20 matching lines...) Expand all
31 private: 31 private:
32 class DBHandler; 32 class DBHandler;
33 33
34 virtual ~PasswordStoreWin(); 34 virtual ~PasswordStoreWin();
35 35
36 // Invoked from Shutdown, but run on the DB thread. 36 // Invoked from Shutdown, but run on the DB thread.
37 void ShutdownOnDBThread(); 37 void ShutdownOnDBThread();
38 38
39 virtual void GetLoginsImpl( 39 virtual void GetLoginsImpl(
40 const autofill::PasswordForm& form, 40 const autofill::PasswordForm& form,
41 AuthorizationPromptPolicy prompt_policy,
41 const ConsumerCallbackRunner& callback_runner) OVERRIDE; 42 const ConsumerCallbackRunner& callback_runner) OVERRIDE;
42 43
43 void GetIE7LoginIfNecessary( 44 void GetIE7LoginIfNecessary(
44 const autofill::PasswordForm& form, 45 const autofill::PasswordForm& form,
45 const ConsumerCallbackRunner& callback_runner, 46 const ConsumerCallbackRunner& callback_runner,
46 const std::vector<autofill::PasswordForm*>& matched_forms); 47 const std::vector<autofill::PasswordForm*>& matched_forms);
47 48
48 scoped_ptr<DBHandler> db_handler_; 49 scoped_ptr<DBHandler> db_handler_;
49 50
50 DISALLOW_COPY_AND_ASSIGN(PasswordStoreWin); 51 DISALLOW_COPY_AND_ASSIGN(PasswordStoreWin);
51 }; 52 };
52 53
53 #endif // CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_WIN_H_ 54 #endif // CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_WIN_H_
OLDNEW
« no previous file with comments | « chrome/browser/password_manager/password_store_unittest.cc ('k') | chrome/browser/password_manager/password_store_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698