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

Side by Side Diff: chrome/browser/history/android/android_cache_database.cc

Issue 486843004: Change base/file_utils.h includes to base/files/file_utils.h in chrome/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix bad merge 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 | 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 "chrome/browser/history/android/android_cache_database.h" 5 #include "chrome/browser/history/android/android_cache_database.h"
6 6
7 #include "base/file_util.h" 7 #include "base/files/file_util.h"
8 #include "chrome/browser/history/android/android_time.h" 8 #include "chrome/browser/history/android/android_time.h"
9 #include "sql/statement.h" 9 #include "sql/statement.h"
10 10
11 using base::Time; 11 using base::Time;
12 using base::TimeDelta; 12 using base::TimeDelta;
13 13
14 namespace history { 14 namespace history {
15 15
16 AndroidCacheDatabase::AndroidCacheDatabase() { 16 AndroidCacheDatabase::AndroidCacheDatabase() {
17 } 17 }
(...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after
280 attach.BindString(0, db_name_.value()); 280 attach.BindString(0, db_name_.value());
281 if (!attach.Run()) { 281 if (!attach.Run()) {
282 LOG(ERROR) << GetDB().GetErrorMessage(); 282 LOG(ERROR) << GetDB().GetErrorMessage();
283 return false; 283 return false;
284 } 284 }
285 285
286 return true; 286 return true;
287 } 287 }
288 288
289 } // namespace history 289 } // namespace history
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698