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

Side by Side Diff: sql/recovery_unittest.cc

Issue 529273002: Change base/file_utils.h includes to base/files/file_utils.h in gin, google_apis, printing, sql, ui… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 6 years, 3 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
« no previous file with comments | « sql/connection_unittest.cc ('k') | sql/sqlite_features_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 <string> 5 #include <string>
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/file_util.h"
9 #include "base/files/file_path.h" 8 #include "base/files/file_path.h"
9 #include "base/files/file_util.h"
10 #include "base/files/scoped_temp_dir.h" 10 #include "base/files/scoped_temp_dir.h"
11 #include "base/path_service.h" 11 #include "base/path_service.h"
12 #include "base/strings/string_number_conversions.h" 12 #include "base/strings/string_number_conversions.h"
13 #include "sql/connection.h" 13 #include "sql/connection.h"
14 #include "sql/meta_table.h" 14 #include "sql/meta_table.h"
15 #include "sql/recovery.h" 15 #include "sql/recovery.h"
16 #include "sql/statement.h" 16 #include "sql/statement.h"
17 #include "sql/test/paths.h" 17 #include "sql/test/paths.h"
18 #include "sql/test/scoped_error_ignorer.h" 18 #include "sql/test/scoped_error_ignorer.h"
19 #include "sql/test/test_helpers.h" 19 #include "sql/test/test_helpers.h"
(...skipping 691 matching lines...) Expand 10 before | Expand all | Expand 10 after
711 EXPECT_TRUE(recovery->AutoRecoverTable("x", 0, &rows)); 711 EXPECT_TRUE(recovery->AutoRecoverTable("x", 0, &rows));
712 EXPECT_EQ(43u, rows); 712 EXPECT_EQ(43u, rows);
713 713
714 // Successfully recovered. 714 // Successfully recovered.
715 EXPECT_TRUE(sql::Recovery::Recovered(recovery.Pass())); 715 EXPECT_TRUE(sql::Recovery::Recovered(recovery.Pass()));
716 } 716 }
717 } 717 }
718 #endif // !defined(USE_SYSTEM_SQLITE) 718 #endif // !defined(USE_SYSTEM_SQLITE)
719 719
720 } // namespace 720 } // namespace
OLDNEW
« no previous file with comments | « sql/connection_unittest.cc ('k') | sql/sqlite_features_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698