| OLD | NEW |
| 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 "sql/connection.h" | 5 #include "sql/connection.h" |
| 6 | 6 |
| 7 #include <limits.h> |
| 7 #include <stddef.h> | 8 #include <stddef.h> |
| 8 #include <stdint.h> | 9 #include <stdint.h> |
| 9 #include <string.h> | 10 #include <string.h> |
| 10 | 11 |
| 11 #include "base/bind.h" | 12 #include "base/bind.h" |
| 12 #include "base/debug/dump_without_crashing.h" | 13 #include "base/debug/dump_without_crashing.h" |
| 13 #include "base/files/file_path.h" | 14 #include "base/files/file_path.h" |
| 14 #include "base/files/file_util.h" | 15 #include "base/files/file_util.h" |
| 15 #include "base/format_macros.h" | 16 #include "base/format_macros.h" |
| 16 #include "base/json/json_file_value_serializer.h" | 17 #include "base/json/json_file_value_serializer.h" |
| (...skipping 1965 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1982 ignore_result(Execute(kNoWritableSchema)); | 1983 ignore_result(Execute(kNoWritableSchema)); |
| 1983 | 1984 |
| 1984 return ret; | 1985 return ret; |
| 1985 } | 1986 } |
| 1986 | 1987 |
| 1987 base::TimeTicks TimeSource::Now() { | 1988 base::TimeTicks TimeSource::Now() { |
| 1988 return base::TimeTicks::Now(); | 1989 return base::TimeTicks::Now(); |
| 1989 } | 1990 } |
| 1990 | 1991 |
| 1991 } // namespace sql | 1992 } // namespace sql |
| OLD | NEW |