Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(282)

Side by Side Diff: webkit/browser/fileapi/copy_or_move_file_validator_unittest.cc

Issue 16010007: Move webkit/quota files to webkit/browser/quota or webkit/common/quota (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 "base/basictypes.h" 5 #include "base/basictypes.h"
6 #include "base/bind.h" 6 #include "base/bind.h"
7 #include "base/files/file_path.h" 7 #include "base/files/file_path.h"
8 #include "base/files/scoped_temp_dir.h" 8 #include "base/files/scoped_temp_dir.h"
9 #include "base/message_loop.h" 9 #include "base/message_loop.h"
10 #include "testing/gtest/include/gtest/gtest.h" 10 #include "testing/gtest/include/gtest/gtest.h"
11 #include "webkit/browser/fileapi/async_file_test_helper.h" 11 #include "webkit/browser/fileapi/async_file_test_helper.h"
12 #include "webkit/browser/fileapi/copy_or_move_file_validator.h" 12 #include "webkit/browser/fileapi/copy_or_move_file_validator.h"
13 #include "webkit/browser/fileapi/external_mount_points.h" 13 #include "webkit/browser/fileapi/external_mount_points.h"
14 #include "webkit/browser/fileapi/file_system_context.h" 14 #include "webkit/browser/fileapi/file_system_context.h"
15 #include "webkit/browser/fileapi/file_system_mount_point_provider.h" 15 #include "webkit/browser/fileapi/file_system_mount_point_provider.h"
16 #include "webkit/browser/fileapi/file_system_url.h" 16 #include "webkit/browser/fileapi/file_system_url.h"
17 #include "webkit/browser/fileapi/isolated_context.h" 17 #include "webkit/browser/fileapi/isolated_context.h"
18 #include "webkit/browser/fileapi/mock_file_system_context.h" 18 #include "webkit/browser/fileapi/mock_file_system_context.h"
19 #include "webkit/browser/fileapi/test_mount_point_provider.h" 19 #include "webkit/browser/fileapi/test_mount_point_provider.h"
20 #include "webkit/browser/quota/mock_special_storage_policy.h"
20 #include "webkit/common/fileapi/file_system_util.h" 21 #include "webkit/common/fileapi/file_system_util.h"
21 #include "webkit/quota/mock_special_storage_policy.h"
22 22
23 namespace fileapi { 23 namespace fileapi {
24 24
25 namespace { 25 namespace {
26 26
27 const FileSystemType kNoValidatorType = kFileSystemTypeTemporary; 27 const FileSystemType kNoValidatorType = kFileSystemTypeTemporary;
28 const FileSystemType kWithValidatorType = kFileSystemTypeTest; 28 const FileSystemType kWithValidatorType = kFileSystemTypeTest;
29 29
30 void ExpectOk(base::PlatformFileError error) { 30 void ExpectOk(base::PlatformFileError error) {
31 ASSERT_EQ(base::PLATFORM_FILE_OK, error); 31 ASSERT_EQ(base::PLATFORM_FILE_OK, error);
(...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after
278 278
279 scoped_ptr<CopyOrMoveFileValidatorFactory> accept_factory( 279 scoped_ptr<CopyOrMoveFileValidatorFactory> accept_factory(
280 new TestCopyOrMoveFileValidatorFactory(true /*accept_all*/)); 280 new TestCopyOrMoveFileValidatorFactory(true /*accept_all*/));
281 helper.SetMediaCopyOrMoveFileValidatorFactory(accept_factory.Pass()); 281 helper.SetMediaCopyOrMoveFileValidatorFactory(accept_factory.Pass());
282 282
283 helper.CopyTest(base::PLATFORM_FILE_ERROR_SECURITY); 283 helper.CopyTest(base::PLATFORM_FILE_ERROR_SECURITY);
284 helper.MoveTest(base::PLATFORM_FILE_ERROR_SECURITY); 284 helper.MoveTest(base::PLATFORM_FILE_ERROR_SECURITY);
285 } 285 }
286 286
287 } // namespace fileapi 287 } // namespace fileapi
OLDNEW
« no previous file with comments | « webkit/browser/fileapi/async_file_test_helper.cc ('k') | webkit/browser/fileapi/file_system_context.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698