| 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 <limits.h> |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 #include <string.h> | 10 #include <string.h> |
| 11 | 11 |
| 12 #include <utility> | 12 #include <utility> |
| 13 | 13 |
| 14 #include "base/bind.h" | 14 #include "base/bind.h" |
| 15 #include "base/debug/alias.h" |
| 15 #include "base/debug/dump_without_crashing.h" | 16 #include "base/debug/dump_without_crashing.h" |
| 16 #include "base/files/file_path.h" | 17 #include "base/files/file_path.h" |
| 17 #include "base/files/file_util.h" | 18 #include "base/files/file_util.h" |
| 18 #include "base/format_macros.h" | 19 #include "base/format_macros.h" |
| 19 #include "base/json/json_file_value_serializer.h" | 20 #include "base/json/json_file_value_serializer.h" |
| 20 #include "base/lazy_instance.h" | 21 #include "base/lazy_instance.h" |
| 21 #include "base/location.h" | 22 #include "base/location.h" |
| 22 #include "base/logging.h" | 23 #include "base/logging.h" |
| 23 #include "base/metrics/histogram_macros.h" | 24 #include "base/metrics/histogram_macros.h" |
| 24 #include "base/metrics/sparse_histogram.h" | 25 #include "base/metrics/sparse_histogram.h" |
| (...skipping 2029 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2054 const std::string& dump_name) { | 2055 const std::string& dump_name) { |
| 2055 return memory_dump_provider_ && | 2056 return memory_dump_provider_ && |
| 2056 memory_dump_provider_->ReportMemoryUsage(pmd, dump_name); | 2057 memory_dump_provider_->ReportMemoryUsage(pmd, dump_name); |
| 2057 } | 2058 } |
| 2058 | 2059 |
| 2059 base::TimeTicks TimeSource::Now() { | 2060 base::TimeTicks TimeSource::Now() { |
| 2060 return base::TimeTicks::Now(); | 2061 return base::TimeTicks::Now(); |
| 2061 } | 2062 } |
| 2062 | 2063 |
| 2063 } // namespace sql | 2064 } // namespace sql |
| OLD | NEW |