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

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

Issue 6028009: Move base/thread.h to base/threading, fix up callers to use the new location.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 9 years, 11 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 | Annotate | Revision Log
« no previous file with comments | « chrome/browser/password_manager/password_store.h ('k') | chrome/browser/plugin_service.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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/scoped_ptr.h" 11 #include "base/scoped_ptr.h"
12 #include "base/thread.h" 12 #include "base/threading/thread.h"
13 #include "chrome/browser/password_manager/login_database.h" 13 #include "chrome/browser/password_manager/login_database.h"
14 #include "chrome/browser/password_manager/password_store.h" 14 #include "chrome/browser/password_manager/password_store.h"
15 15
16 class MacKeychain; 16 class MacKeychain;
17 class NotificationService; 17 class NotificationService;
18 18
19 // Implements PasswordStore on top of the OS X Keychain, with an internal 19 // Implements PasswordStore on top of the OS X Keychain, with an internal
20 // database for extra metadata. For an overview of the interactions with the 20 // database for extra metadata. For an overview of the interactions with the
21 // Keychain, as well as the rationale for some of the behaviors, see the 21 // Keychain, as well as the rationale for some of the behaviors, see the
22 // Keychain integration design doc: 22 // Keychain integration design doc:
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 scoped_ptr<base::Thread> thread_; 86 scoped_ptr<base::Thread> thread_;
87 87
88 // Since we aren't running on a well-known thread but still want to send out 88 // Since we aren't running on a well-known thread but still want to send out
89 // notifications, we need to run our own service. 89 // notifications, we need to run our own service.
90 scoped_ptr<NotificationService> notification_service_; 90 scoped_ptr<NotificationService> notification_service_;
91 91
92 DISALLOW_COPY_AND_ASSIGN(PasswordStoreMac); 92 DISALLOW_COPY_AND_ASSIGN(PasswordStoreMac);
93 }; 93 };
94 94
95 #endif // CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_MAC_H_ 95 #endif // CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_MAC_H_
OLDNEW
« no previous file with comments | « chrome/browser/password_manager/password_store.h ('k') | chrome/browser/plugin_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698