| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 namespace UnitTests | 5 namespace UnitTests |
| 6 { | 6 { |
| 7 using System; | 7 using System; |
| 8 using System.Collections.Generic; | 8 using System.Collections.Generic; |
| 9 using System.IO; | 9 using System.IO; |
| 10 using System.Linq; | 10 using System.Linq; |
| (...skipping 443 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 454 } | 454 } |
| 455 | 455 |
| 456 foreach (DirectoryInfo subdir in dir.GetDirectories()) | 456 foreach (DirectoryInfo subdir in dir.GetDirectories()) |
| 457 { | 457 { |
| 458 string path = Path.Combine(dest, subdir.Name); | 458 string path = Path.Combine(dest, subdir.Name); |
| 459 CopyDirectory(subdir.FullName, path); | 459 CopyDirectory(subdir.FullName, path); |
| 460 } | 460 } |
| 461 } | 461 } |
| 462 } | 462 } |
| 463 } | 463 } |
| OLD | NEW |