| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 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 "webkit/browser/fileapi/sandbox_file_system_backend_delegate.h" | 5 #include "webkit/browser/fileapi/sandbox_file_system_backend_delegate.h" |
| 6 | 6 |
| 7 #include "base/basictypes.h" | 7 #include "base/basictypes.h" |
| 8 #include "base/file_util.h" | 8 #include "base/file_util.h" |
| 9 #include "base/files/scoped_temp_dir.h" | 9 #include "base/files/scoped_temp_dir.h" |
| 10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| 11 #include "base/message_loop/message_loop.h" | 11 #include "base/message_loop/message_loop.h" |
| 12 #include "base/message_loop/message_loop_proxy.h" | 12 #include "base/message_loop/message_loop_proxy.h" |
| 13 #include "content/public/test/test_file_system_options.h" |
| 13 #include "testing/gtest/include/gtest/gtest.h" | 14 #include "testing/gtest/include/gtest/gtest.h" |
| 14 #include "url/gurl.h" | 15 #include "url/gurl.h" |
| 15 #include "webkit/browser/fileapi/file_system_url.h" | 16 #include "webkit/browser/fileapi/file_system_url.h" |
| 16 #include "webkit/browser/fileapi/mock_file_system_options.h" | |
| 17 | 17 |
| 18 namespace fileapi { | 18 namespace fileapi { |
| 19 | 19 |
| 20 namespace { | 20 namespace { |
| 21 | 21 |
| 22 FileSystemURL CreateFileSystemURL(const char* path) { | 22 FileSystemURL CreateFileSystemURL(const char* path) { |
| 23 const GURL kOrigin("http://foo/"); | 23 const GURL kOrigin("http://foo/"); |
| 24 return FileSystemURL::CreateForTest( | 24 return FileSystemURL::CreateForTest( |
| 25 kOrigin, kFileSystemTypeTemporary, base::FilePath::FromUTF8Unsafe(path)); | 25 kOrigin, kFileSystemTypeTemporary, base::FilePath::FromUTF8Unsafe(path)); |
| 26 } | 26 } |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 EXPECT_TRUE(delegate_->IsAccessValid(CreateFileSystemURL(" ."))); | 73 EXPECT_TRUE(delegate_->IsAccessValid(CreateFileSystemURL(" ."))); |
| 74 EXPECT_TRUE(delegate_->IsAccessValid(CreateFileSystemURL(". "))); | 74 EXPECT_TRUE(delegate_->IsAccessValid(CreateFileSystemURL(". "))); |
| 75 EXPECT_TRUE(delegate_->IsAccessValid(CreateFileSystemURL("b."))); | 75 EXPECT_TRUE(delegate_->IsAccessValid(CreateFileSystemURL("b."))); |
| 76 EXPECT_TRUE(delegate_->IsAccessValid(CreateFileSystemURL(".b"))); | 76 EXPECT_TRUE(delegate_->IsAccessValid(CreateFileSystemURL(".b"))); |
| 77 | 77 |
| 78 // A path that looks like a drive letter. | 78 // A path that looks like a drive letter. |
| 79 EXPECT_TRUE(delegate_->IsAccessValid(CreateFileSystemURL("c:"))); | 79 EXPECT_TRUE(delegate_->IsAccessValid(CreateFileSystemURL("c:"))); |
| 80 } | 80 } |
| 81 | 81 |
| 82 } // namespace fileapi | 82 } // namespace fileapi |
| OLD | NEW |