| 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 "components/history/core/browser/history_backend.h" | 5 #include "components/history/core/browser/history_backend.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 #include <functional> | 8 #include <functional> |
| 9 #include <list> | 9 #include <list> |
| 10 #include <map> | 10 #include <map> |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 #include "components/history/core/browser/download_row.h" | 34 #include "components/history/core/browser/download_row.h" |
| 35 #include "components/history/core/browser/history_backend_client.h" | 35 #include "components/history/core/browser/history_backend_client.h" |
| 36 #include "components/history/core/browser/history_backend_observer.h" | 36 #include "components/history/core/browser/history_backend_observer.h" |
| 37 #include "components/history/core/browser/history_constants.h" | 37 #include "components/history/core/browser/history_constants.h" |
| 38 #include "components/history/core/browser/history_database.h" | 38 #include "components/history/core/browser/history_database.h" |
| 39 #include "components/history/core/browser/history_database_params.h" | 39 #include "components/history/core/browser/history_database_params.h" |
| 40 #include "components/history/core/browser/history_db_task.h" | 40 #include "components/history/core/browser/history_db_task.h" |
| 41 #include "components/history/core/browser/in_memory_history_backend.h" | 41 #include "components/history/core/browser/in_memory_history_backend.h" |
| 42 #include "components/history/core/browser/keyword_search_term.h" | 42 #include "components/history/core/browser/keyword_search_term.h" |
| 43 #include "components/history/core/browser/page_usage_data.h" | 43 #include "components/history/core/browser/page_usage_data.h" |
| 44 #include "components/history/core/browser/typed_url_sync_bridge.h" | |
| 45 #include "components/history/core/browser/typed_url_syncable_service.h" | 44 #include "components/history/core/browser/typed_url_syncable_service.h" |
| 46 #include "components/history/core/browser/url_utils.h" | 45 #include "components/history/core/browser/url_utils.h" |
| 47 #include "components/sync/driver/sync_driver_switches.h" | 46 #include "components/sync/driver/sync_driver_switches.h" |
| 48 #include "net/base/registry_controlled_domains/registry_controlled_domain.h" | 47 #include "net/base/registry_controlled_domains/registry_controlled_domain.h" |
| 49 #include "sql/error_delegate_util.h" | 48 #include "sql/error_delegate_util.h" |
| 50 #include "third_party/skia/include/core/SkBitmap.h" | 49 #include "third_party/skia/include/core/SkBitmap.h" |
| 51 #include "ui/gfx/codec/png_codec.h" | 50 #include "ui/gfx/codec/png_codec.h" |
| 52 #include "url/gurl.h" | 51 #include "url/gurl.h" |
| 53 #include "url/url_constants.h" | 52 #include "url/url_constants.h" |
| 54 | 53 |
| (...skipping 2581 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2636 // transaction is currently open. | 2635 // transaction is currently open. |
| 2637 db_->CommitTransaction(); | 2636 db_->CommitTransaction(); |
| 2638 db_->Vacuum(); | 2637 db_->Vacuum(); |
| 2639 db_->BeginTransaction(); | 2638 db_->BeginTransaction(); |
| 2640 db_->GetStartDate(&first_recorded_time_); | 2639 db_->GetStartDate(&first_recorded_time_); |
| 2641 | 2640 |
| 2642 return true; | 2641 return true; |
| 2643 } | 2642 } |
| 2644 | 2643 |
| 2645 } // namespace history | 2644 } // namespace history |
| OLD | NEW |