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

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

Issue 3179017: FBTF: Remove "obviously" unneeded standard C++ library #includes. (Closed)
Patch Set: fixed mac oopsie Created 10 years, 4 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) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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_DEFAULT_H_ 5 #ifndef CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_DEFAULT_H_
6 #define CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_DEFAULT_H_ 6 #define CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_DEFAULT_H_
7 #pragma once 7 #pragma once
8 8
9 #include <map>
10
11 #include "base/file_path.h" 9 #include "base/file_path.h"
12 #include "base/ref_counted.h" 10 #include "base/ref_counted.h"
13 #include "base/scoped_ptr.h" 11 #include "base/scoped_ptr.h"
14 #include "chrome/browser/password_manager/login_database.h" 12 #include "chrome/browser/password_manager/login_database.h"
15 #include "chrome/browser/password_manager/password_store.h" 13 #include "chrome/browser/password_manager/password_store.h"
16 #include "chrome/browser/profile.h" 14 #include "chrome/browser/profile.h"
17 #include "chrome/browser/webdata/web_data_service.h" 15 #include "chrome/browser/webdata/web_data_service.h"
18 16
19 // Simple password store implementation that delegates everything to 17 // Simple password store implementation that delegates everything to
20 // the LoginDatabase. 18 // the LoginDatabase.
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 60
63 scoped_ptr<LoginDatabase> login_db_; 61 scoped_ptr<LoginDatabase> login_db_;
64 Profile* profile_; 62 Profile* profile_;
65 63
66 std::set<WebDataService::Handle> handles_; 64 std::set<WebDataService::Handle> handles_;
67 65
68 DISALLOW_COPY_AND_ASSIGN(PasswordStoreDefault); 66 DISALLOW_COPY_AND_ASSIGN(PasswordStoreDefault);
69 }; 67 };
70 68
71 #endif // CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_DEFAULT_H_ 69 #endif // CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_DEFAULT_H_
OLDNEW
« no previous file with comments | « chrome/browser/password_manager/native_backend_gnome_x.h ('k') | chrome/browser/policy/configuration_policy_pref_store.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698