OLD | NEW |
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 #include "chrome/browser/chromeos/login/owner_manager.h" |
5 #include "chrome/browser/chromeos/login/owner_manager_unittest.h" | 6 #include "chrome/browser/chromeos/login/owner_manager_unittest.h" |
6 #include "chrome/browser/chromeos/login/owner_manager.h" | |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/crypto/rsa_private_key.h" | 10 #include "base/crypto/rsa_private_key.h" |
11 #include "base/file_path.h" | 11 #include "base/file_path.h" |
12 #include "base/file_util.h" | 12 #include "base/file_util.h" |
13 #include "base/logging.h" | 13 #include "base/logging.h" |
14 #include "base/nss_util.h" | 14 #include "base/nss_util.h" |
15 #include "base/scoped_temp_dir.h" | 15 #include "base/scoped_temp_dir.h" |
16 #include "chrome/browser/chrome_thread.h" | 16 #include "chrome/browser/chrome_thread.h" |
(...skipping 290 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
307 ChromeThread::FILE, FROM_HERE, | 307 ChromeThread::FILE, FROM_HERE, |
308 NewRunnableMethod(manager.get(), | 308 NewRunnableMethod(manager.get(), |
309 &OwnerManager::Sign, | 309 &OwnerManager::Sign, |
310 ChromeThread::UI, | 310 ChromeThread::UI, |
311 data, | 311 data, |
312 &delegate)); | 312 &delegate)); |
313 message_loop_.Run(); | 313 message_loop_.Run(); |
314 } | 314 } |
315 | 315 |
316 } // namespace chromeos | 316 } // namespace chromeos |
OLD | NEW |