OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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/extensions/file_manager/drive_test_util.h" | 5 #include "chrome/browser/chromeos/file_manager/drive_test_util.h" |
6 | 6 |
7 #include "base/files/file_path.h" | 7 #include "base/files/file_path.h" |
8 #include "base/run_loop.h" | 8 #include "base/run_loop.h" |
9 #include "chrome/browser/chromeos/drive/drive_integration_service.h" | 9 #include "chrome/browser/chromeos/drive/drive_integration_service.h" |
10 #include "chrome/browser/profiles/profile.h" | 10 #include "chrome/browser/profiles/profile.h" |
11 #include "content/public/browser/browser_context.h" | 11 #include "content/public/browser/browser_context.h" |
12 #include "webkit/browser/fileapi/external_mount_points.h" | 12 #include "webkit/browser/fileapi/external_mount_points.h" |
13 | 13 |
14 namespace file_manager { | 14 namespace file_manager { |
15 namespace test_util { | 15 namespace test_util { |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
73 return; | 73 return; |
74 | 74 |
75 DriveMountPointWaiter mount_point_waiter(integration_service); | 75 DriveMountPointWaiter mount_point_waiter(integration_service); |
76 LOG(INFO) << "Waiting for drive mount point to get mounted."; | 76 LOG(INFO) << "Waiting for drive mount point to get mounted."; |
77 mount_point_waiter.Wait(); | 77 mount_point_waiter.Wait(); |
78 LOG(INFO) << "Drive mount point found."; | 78 LOG(INFO) << "Drive mount point found."; |
79 } | 79 } |
80 | 80 |
81 } // namespace test_util | 81 } // namespace test_util |
82 } // namespace file_manager | 82 } // namespace file_manager |
OLD | NEW |