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

Side by Side Diff: chrome/browser/media_galleries/fileapi/media_file_validator_unittest.cc

Issue 16835007: Update the include paths of message_loop_proxy.h (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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/file_util.h" 7 #include "base/file_util.h"
8 #include "base/files/file_path.h" 8 #include "base/files/file_path.h"
9 #include "base/files/scoped_temp_dir.h" 9 #include "base/files/scoped_temp_dir.h"
10 #include "base/message_loop.h" 10 #include "base/message_loop/message_loop.h"
11 #include "base/message_loop_proxy.h" 11 #include "base/message_loop/message_loop_proxy.h"
12 #include "chrome/browser/media_galleries/fileapi/media_file_system_mount_point_p rovider.h" 12 #include "chrome/browser/media_galleries/fileapi/media_file_system_mount_point_p rovider.h"
13 #include "chrome/test/base/in_process_browser_test.h" 13 #include "chrome/test/base/in_process_browser_test.h"
14 #include "content/public/test/browser_test.h" 14 #include "content/public/test/browser_test.h"
15 #include "content/public/test/test_utils.h" 15 #include "content/public/test/test_utils.h"
16 #include "testing/gtest/include/gtest/gtest.h" 16 #include "testing/gtest/include/gtest/gtest.h"
17 #include "webkit/browser/fileapi/copy_or_move_file_validator.h" 17 #include "webkit/browser/fileapi/copy_or_move_file_validator.h"
18 #include "webkit/browser/fileapi/file_system_context.h" 18 #include "webkit/browser/fileapi/file_system_context.h"
19 #include "webkit/browser/fileapi/file_system_mount_point_provider.h" 19 #include "webkit/browser/fileapi/file_system_mount_point_provider.h"
20 #include "webkit/browser/fileapi/file_system_operation_runner.h" 20 #include "webkit/browser/fileapi/file_system_operation_runner.h"
21 #include "webkit/browser/fileapi/file_system_url.h" 21 #include "webkit/browser/fileapi/file_system_url.h"
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after
219 IN_PROC_BROWSER_TEST_F(MediaFileValidatorTest, InvalidImage) { 219 IN_PROC_BROWSER_TEST_F(MediaFileValidatorTest, InvalidImage) {
220 MoveTest("a.webp", std::string(kInvalidImage, arraysize(kInvalidImage)), 220 MoveTest("a.webp", std::string(kInvalidImage, arraysize(kInvalidImage)),
221 false); 221 false);
222 } 222 }
223 223
224 IN_PROC_BROWSER_TEST_F(MediaFileValidatorTest, UnsupportedExtension) { 224 IN_PROC_BROWSER_TEST_F(MediaFileValidatorTest, UnsupportedExtension) {
225 MoveTest("a.txt", std::string(kValidImage, arraysize(kValidImage)), false); 225 MoveTest("a.txt", std::string(kValidImage, arraysize(kValidImage)), false);
226 } 226 }
227 227
228 } // namespace chrome 228 } // namespace chrome
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698