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

Side by Side Diff: webkit/fileapi/local_file_util_unittest.cc

Issue 13322003: Update the remaining references to sys_string_conversions.h to its new location. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 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 (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 <string> 5 #include <string>
6 6
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 "base/message_loop_proxy.h" 10 #include "base/message_loop_proxy.h"
11 #include "base/platform_file.h" 11 #include "base/platform_file.h"
12 #include "base/sys_string_conversions.h" 12 #include "base/strings/sys_string_conversions.h"
13 #include "base/utf_string_conversions.h" 13 #include "base/utf_string_conversions.h"
14 #include "testing/gtest/include/gtest/gtest.h" 14 #include "testing/gtest/include/gtest/gtest.h"
15 #include "webkit/fileapi/async_file_test_helper.h" 15 #include "webkit/fileapi/async_file_test_helper.h"
16 #include "webkit/fileapi/file_system_context.h" 16 #include "webkit/fileapi/file_system_context.h"
17 #include "webkit/fileapi/file_system_file_util.h" 17 #include "webkit/fileapi/file_system_file_util.h"
18 #include "webkit/fileapi/file_system_operation_context.h" 18 #include "webkit/fileapi/file_system_operation_context.h"
19 #include "webkit/fileapi/file_system_types.h" 19 #include "webkit/fileapi/file_system_types.h"
20 #include "webkit/fileapi/local_file_system_test_helper.h" 20 #include "webkit/fileapi/local_file_system_test_helper.h"
21 #include "webkit/fileapi/local_file_util.h" 21 #include "webkit/fileapi/local_file_util.h"
22 #include "webkit/fileapi/native_file_util.h" 22 #include "webkit/fileapi/native_file_util.h"
(...skipping 306 matching lines...) Expand 10 before | Expand all | Expand 10 after
329 AsyncFileTestHelper::Move(file_system_context(), 329 AsyncFileTestHelper::Move(file_system_context(),
330 Path(from_dir), Path(to_dir))); 330 Path(from_dir), Path(to_dir)));
331 331
332 EXPECT_FALSE(DirectoryExists(from_dir)); 332 EXPECT_FALSE(DirectoryExists(from_dir));
333 EXPECT_TRUE(DirectoryExists(to_dir)); 333 EXPECT_TRUE(DirectoryExists(to_dir));
334 EXPECT_TRUE(FileExists(to_file)); 334 EXPECT_TRUE(FileExists(to_file));
335 EXPECT_EQ(1020, GetSize(to_file)); 335 EXPECT_EQ(1020, GetSize(to_file));
336 } 336 }
337 337
338 } // namespace fileapi 338 } // namespace fileapi
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698