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 #include <set> | 5 #include <set> |
6 #include <string> | 6 #include <string> |
7 | 7 |
8 #include "base/bind.h" | 8 #include "base/bind.h" |
9 #include "base/file_util.h" | 9 #include "base/file_util.h" |
10 #include "base/files/scoped_temp_dir.h" | 10 #include "base/files/scoped_temp_dir.h" |
11 #include "base/format_macros.h" | 11 #include "base/format_macros.h" |
12 #include "base/message_loop.h" | 12 #include "base/message_loop/message_loop.h" |
13 #include "base/message_loop_proxy.h" | 13 #include "base/message_loop/message_loop_proxy.h" |
14 #include "base/strings/stringprintf.h" | 14 #include "base/strings/stringprintf.h" |
15 #include "base/time.h" | 15 #include "base/time.h" |
16 #include "chrome/browser/media_galleries/fileapi/media_file_system_mount_point_p
rovider.h" | 16 #include "chrome/browser/media_galleries/fileapi/media_file_system_mount_point_p
rovider.h" |
17 #include "chrome/browser/media_galleries/fileapi/native_media_file_util.h" | 17 #include "chrome/browser/media_galleries/fileapi/native_media_file_util.h" |
18 #include "content/public/test/test_browser_thread.h" | 18 #include "content/public/test/test_browser_thread.h" |
19 #include "testing/gtest/include/gtest/gtest.h" | 19 #include "testing/gtest/include/gtest/gtest.h" |
20 #include "webkit/browser/fileapi/external_mount_points.h" | 20 #include "webkit/browser/fileapi/external_mount_points.h" |
21 #include "webkit/browser/fileapi/file_system_context.h" | 21 #include "webkit/browser/fileapi/file_system_context.h" |
22 #include "webkit/browser/fileapi/file_system_mount_point_provider.h" | 22 #include "webkit/browser/fileapi/file_system_mount_point_provider.h" |
23 #include "webkit/browser/fileapi/file_system_operation_runner.h" | 23 #include "webkit/browser/fileapi/file_system_operation_runner.h" |
(...skipping 505 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
529 expected_error = base::PLATFORM_FILE_ERROR_SECURITY; | 529 expected_error = base::PLATFORM_FILE_ERROR_SECURITY; |
530 error = base::PLATFORM_FILE_ERROR_FAILED; | 530 error = base::PLATFORM_FILE_ERROR_FAILED; |
531 operation_runner()->CreateSnapshotFile(url, | 531 operation_runner()->CreateSnapshotFile(url, |
532 base::Bind(CreateSnapshotCallback, &error)); | 532 base::Bind(CreateSnapshotCallback, &error)); |
533 base::MessageLoop::current()->RunUntilIdle(); | 533 base::MessageLoop::current()->RunUntilIdle(); |
534 ASSERT_EQ(expected_error, error); | 534 ASSERT_EQ(expected_error, error); |
535 } | 535 } |
536 } | 536 } |
537 | 537 |
538 } // namespace chrome | 538 } // namespace chrome |
OLD | NEW |