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

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

Issue 15078003: Cleanup: Remove unneeded base/file_util.h includes in base. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: rebase Created 7 years, 7 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 "webkit/fileapi/local_file_system_operation.h" 5 #include "webkit/fileapi/local_file_system_operation.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/file_util.h"
8 #include "base/files/scoped_temp_dir.h" 9 #include "base/files/scoped_temp_dir.h"
9 #include "base/logging.h" 10 #include "base/logging.h"
10 #include "base/memory/scoped_ptr.h" 11 #include "base/memory/scoped_ptr.h"
11 #include "base/memory/weak_ptr.h" 12 #include "base/memory/weak_ptr.h"
12 #include "base/message_loop.h" 13 #include "base/message_loop.h"
13 #include "base/strings/string_number_conversions.h" 14 #include "base/strings/string_number_conversions.h"
14 #include "googleurl/src/gurl.h" 15 #include "googleurl/src/gurl.h"
15 #include "testing/gtest/include/gtest/gtest.h" 16 #include "testing/gtest/include/gtest/gtest.h"
16 #include "webkit/blob/shareable_file_reference.h" 17 #include "webkit/blob/shareable_file_reference.h"
17 #include "webkit/fileapi/async_file_test_helper.h" 18 #include "webkit/fileapi/async_file_test_helper.h"
(...skipping 1189 matching lines...) Expand 10 before | Expand all | Expand 10 after
1207 EXPECT_FALSE(info().is_directory); 1208 EXPECT_FALSE(info().is_directory);
1208 EXPECT_EQ(PlatformPath(file_path), path()); 1209 EXPECT_EQ(PlatformPath(file_path), path());
1209 EXPECT_TRUE(change_observer()->HasNoChange()); 1210 EXPECT_TRUE(change_observer()->HasNoChange());
1210 1211
1211 // The FileSystemOpration implementation does not create a 1212 // The FileSystemOpration implementation does not create a
1212 // shareable file reference. 1213 // shareable file reference.
1213 EXPECT_EQ(NULL, shareable_file_ref()); 1214 EXPECT_EQ(NULL, shareable_file_ref());
1214 } 1215 }
1215 1216
1216 } // namespace fileapi 1217 } // namespace fileapi
OLDNEW
« no previous file with comments | « webkit/fileapi/isolated_file_util.cc ('k') | webkit/fileapi/local_file_system_quota_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698