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

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

Issue 624173002: replace OVERRIDE and FINAL with override and final in chrome/browser/[j-q]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master Created 6 years, 2 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 (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 "components/password_manager/core/browser/password_store_default.h" 9 #include "components/password_manager/core/browser/password_store_default.h"
10 10
(...skipping 12 matching lines...) Expand all
23 class PasswordStoreWin : public password_manager::PasswordStoreDefault { 23 class PasswordStoreWin : public password_manager::PasswordStoreDefault {
24 public: 24 public:
25 // PasswordWebDataService is only used for IE7 password fetching. 25 // PasswordWebDataService is only used for IE7 password fetching.
26 PasswordStoreWin( 26 PasswordStoreWin(
27 scoped_refptr<base::SingleThreadTaskRunner> main_thread_runner, 27 scoped_refptr<base::SingleThreadTaskRunner> main_thread_runner,
28 scoped_refptr<base::SingleThreadTaskRunner> db_thread_runner, 28 scoped_refptr<base::SingleThreadTaskRunner> db_thread_runner,
29 password_manager::LoginDatabase* login_database, 29 password_manager::LoginDatabase* login_database,
30 PasswordWebDataService* web_data_service); 30 PasswordWebDataService* web_data_service);
31 31
32 // PasswordStore: 32 // PasswordStore:
33 virtual void Shutdown() OVERRIDE; 33 virtual void Shutdown() override;
34 34
35 private: 35 private:
36 class DBHandler; 36 class DBHandler;
37 37
38 virtual ~PasswordStoreWin(); 38 virtual ~PasswordStoreWin();
39 39
40 // Invoked from Shutdown, but run on the DB thread. 40 // Invoked from Shutdown, but run on the DB thread.
41 void ShutdownOnDBThread(); 41 void ShutdownOnDBThread();
42 42
43 virtual void GetLoginsImpl( 43 virtual void GetLoginsImpl(
44 const autofill::PasswordForm& form, 44 const autofill::PasswordForm& form,
45 AuthorizationPromptPolicy prompt_policy, 45 AuthorizationPromptPolicy prompt_policy,
46 const ConsumerCallbackRunner& callback_runner) OVERRIDE; 46 const ConsumerCallbackRunner& callback_runner) override;
47 47
48 void GetIE7LoginIfNecessary( 48 void GetIE7LoginIfNecessary(
49 const autofill::PasswordForm& form, 49 const autofill::PasswordForm& form,
50 const ConsumerCallbackRunner& callback_runner, 50 const ConsumerCallbackRunner& callback_runner,
51 const std::vector<autofill::PasswordForm*>& matched_forms); 51 const std::vector<autofill::PasswordForm*>& matched_forms);
52 52
53 scoped_ptr<DBHandler> db_handler_; 53 scoped_ptr<DBHandler> db_handler_;
54 54
55 DISALLOW_COPY_AND_ASSIGN(PasswordStoreWin); 55 DISALLOW_COPY_AND_ASSIGN(PasswordStoreWin);
56 }; 56 };
57 57
58 #endif // CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_WIN_H_ 58 #endif // CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_WIN_H_
OLDNEW
« no previous file with comments | « chrome/browser/password_manager/password_store_mac.h ('k') | chrome/browser/password_manager/password_store_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698