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

Side by Side Diff: chrome/browser/password_manager/password_store.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
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_H_ 5 #ifndef CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_H_
6 #define CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_H_ 6 #define CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_H_
7 #pragma once 7 #pragma once
8 8
9 #include <set> 9 #include <set>
10 #include <vector> 10 #include <vector>
11 11
12 #include "base/ref_counted.h" 12 #include "base/ref_counted.h"
13 #include "base/thread.h" 13 #include "base/threading/thread.h"
14 #include "base/time.h" 14 #include "base/time.h"
15 #include "webkit/glue/password_form.h" 15 #include "webkit/glue/password_form.h"
16 16
17 class Profile; 17 class Profile;
18 class Task; 18 class Task;
19 19
20 namespace browser_sync { 20 namespace browser_sync {
21 class PasswordDataTypeController; 21 class PasswordDataTypeController;
22 class PasswordModelAssociator; 22 class PasswordModelAssociator;
23 class PasswordModelWorker; 23 class PasswordModelWorker;
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
158 int handle_; 158 int handle_;
159 159
160 // List of pending request handles. Handles are removed from the set when 160 // List of pending request handles. Handles are removed from the set when
161 // they finish or are canceled. 161 // they finish or are canceled.
162 std::set<int> pending_requests_; 162 std::set<int> pending_requests_;
163 163
164 DISALLOW_COPY_AND_ASSIGN(PasswordStore); 164 DISALLOW_COPY_AND_ASSIGN(PasswordStore);
165 }; 165 };
166 166
167 #endif // CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_H_ 167 #endif // CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_H_
OLDNEW
« no previous file with comments | « chrome/browser/oom_priority_manager.cc ('k') | chrome/browser/password_manager/password_store_mac.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698