| Index: sql/connection.cc
|
| diff --git a/sql/connection.cc b/sql/connection.cc
|
| index 6ca60ef0ecb3dcf1e8a704d3630a86eba3560f51..6e02cd755f56a31342f6291b4ae418303d5781c9 100644
|
| --- a/sql/connection.cc
|
| +++ b/sql/connection.cc
|
| @@ -213,7 +213,7 @@ Connection::~Connection() {
|
| bool Connection::Open(const base::FilePath& path) {
|
| if (!histogram_tag_.empty()) {
|
| int64 size_64 = 0;
|
| - if (file_util::GetFileSize(path, &size_64)) {
|
| + if (base::GetFileSize(path, &size_64)) {
|
| size_t sample = static_cast<size_t>(size_64 / 1024);
|
| std::string full_histogram_name = "Sqlite.SizeKB." + histogram_tag_;
|
| base::HistogramBase* histogram =
|
|
|