OLD | NEW |
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 "chrome/browser/sync_file_system/local/local_file_change_tracker.h" | 5 #include "chrome/browser/sync_file_system/local/local_file_change_tracker.h" |
6 | 6 |
7 #include <stddef.h> | 7 #include <stddef.h> |
8 #include <queue> | 8 #include <queue> |
9 #include <utility> | 9 #include <utility> |
10 | 10 |
11 #include "base/location.h" | 11 #include "base/location.h" |
12 #include "base/logging.h" | 12 #include "base/logging.h" |
13 #include "base/macros.h" | 13 #include "base/macros.h" |
| 14 #include "base/metrics/histogram_macros.h" |
14 #include "base/sequenced_task_runner.h" | 15 #include "base/sequenced_task_runner.h" |
15 #include "base/stl_util.h" | 16 #include "base/stl_util.h" |
16 #include "chrome/browser/sync_file_system/local/local_file_sync_status.h" | 17 #include "chrome/browser/sync_file_system/local/local_file_sync_status.h" |
17 #include "chrome/browser/sync_file_system/syncable_file_system_util.h" | 18 #include "chrome/browser/sync_file_system/syncable_file_system_util.h" |
18 #include "storage/browser/fileapi/file_system_context.h" | 19 #include "storage/browser/fileapi/file_system_context.h" |
19 #include "storage/browser/fileapi/file_system_file_util.h" | 20 #include "storage/browser/fileapi/file_system_file_util.h" |
20 #include "storage/browser/fileapi/file_system_operation_context.h" | 21 #include "storage/browser/fileapi/file_system_operation_context.h" |
21 #include "storage/common/fileapi/file_system_util.h" | 22 #include "storage/common/fileapi/file_system_util.h" |
22 #include "third_party/leveldatabase/env_chromium.h" | 23 #include "third_party/leveldatabase/env_chromium.h" |
23 #include "third_party/leveldatabase/src/helpers/memenv/memenv.h" | 24 #include "third_party/leveldatabase/src/helpers/memenv/memenv.h" |
(...skipping 599 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
623 if (!status.ok() && !status.IsNotFound()) { | 624 if (!status.ok() && !status.IsNotFound()) { |
624 HandleError(FROM_HERE, status); | 625 HandleError(FROM_HERE, status); |
625 db_status_ = LevelDBStatusToSyncStatusCode(status); | 626 db_status_ = LevelDBStatusToSyncStatusCode(status); |
626 db_.reset(); | 627 db_.reset(); |
627 return db_status_; | 628 return db_status_; |
628 } | 629 } |
629 return SYNC_STATUS_OK; | 630 return SYNC_STATUS_OK; |
630 } | 631 } |
631 | 632 |
632 } // namespace sync_file_system | 633 } // namespace sync_file_system |
OLD | NEW |