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

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

Issue 8702019: Use callback_forward.h instead of callback.h where possible. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix include order. Created 9 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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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_MAC_H_ 5 #ifndef CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_MAC_H_
6 #define CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_MAC_H_ 6 #define CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_MAC_H_
7 #pragma once 7 #pragma once
8 8
9 #include <vector> 9 #include <vector>
10 10
11 #include "base/callback.h" 11 #include "base/callback_forward.h"
12 #include "base/memory/scoped_ptr.h" 12 #include "base/memory/scoped_ptr.h"
13 #include "base/threading/thread.h" 13 #include "base/threading/thread.h"
14 #include "chrome/browser/password_manager/login_database.h" 14 #include "chrome/browser/password_manager/login_database.h"
15 #include "chrome/browser/password_manager/password_store.h" 15 #include "chrome/browser/password_manager/password_store.h"
16 16
17 class MacKeychain; 17 class MacKeychain;
18 18
19 namespace content { 19 namespace content {
20 class NotificationService; 20 class NotificationService;
21 } 21 }
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 scoped_ptr<base::Thread> thread_; 91 scoped_ptr<base::Thread> thread_;
92 92
93 // Since we aren't running on a well-known thread but still want to send out 93 // Since we aren't running on a well-known thread but still want to send out
94 // notifications, we need to run our own service. 94 // notifications, we need to run our own service.
95 scoped_ptr<content::NotificationService> notification_service_; 95 scoped_ptr<content::NotificationService> notification_service_;
96 96
97 DISALLOW_COPY_AND_ASSIGN(PasswordStoreMac); 97 DISALLOW_COPY_AND_ASSIGN(PasswordStoreMac);
98 }; 98 };
99 99
100 #endif // CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_MAC_H_ 100 #endif // CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_MAC_H_
OLDNEW
« no previous file with comments | « chrome/browser/mock_browsing_data_appcache_helper.h ('k') | chrome/browser/prerender/prerender_tracker.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698