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

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

Issue 19633002: Use a direct include of the message_loop header in webkit/, part 1. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 5 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/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_backend.h" 14 #include "webkit/browser/fileapi/file_system_backend.h"
15 #include "webkit/browser/fileapi/file_system_context.h" 15 #include "webkit/browser/fileapi/file_system_context.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_file_system_backend.h" 19 #include "webkit/browser/fileapi/test_file_system_backend.h"
(...skipping 263 matching lines...) Expand 10 before | Expand all | Expand 10 after
283 283
284 scoped_ptr<CopyOrMoveFileValidatorFactory> accept_factory( 284 scoped_ptr<CopyOrMoveFileValidatorFactory> accept_factory(
285 new TestCopyOrMoveFileValidatorFactory(true /*accept_all*/)); 285 new TestCopyOrMoveFileValidatorFactory(true /*accept_all*/));
286 helper.SetMediaCopyOrMoveFileValidatorFactory(accept_factory.Pass()); 286 helper.SetMediaCopyOrMoveFileValidatorFactory(accept_factory.Pass());
287 287
288 helper.CopyTest(base::PLATFORM_FILE_ERROR_SECURITY); 288 helper.CopyTest(base::PLATFORM_FILE_ERROR_SECURITY);
289 helper.MoveTest(base::PLATFORM_FILE_ERROR_SECURITY); 289 helper.MoveTest(base::PLATFORM_FILE_ERROR_SECURITY);
290 } 290 }
291 291
292 } // namespace fileapi 292 } // namespace fileapi
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698