Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(206)

Side by Side Diff: sync/syncable/directory_backing_store.cc

Issue 1969833002: Fix include path for moved thread_task_runner_handle.h header in sync/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@a1_move_task_runner_handle
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « sync/sessions/model_type_registry.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 The Chromium Authors. All rights reserved. 1 // Copyright 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 "sync/syncable/directory_backing_store.h" 5 #include "sync/syncable/directory_backing_store.h"
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <limits> 10 #include <limits>
11 #include <unordered_set> 11 #include <unordered_set>
12 12
13 #include "base/base64.h" 13 #include "base/base64.h"
14 #include "base/logging.h" 14 #include "base/logging.h"
15 #include "base/macros.h" 15 #include "base/macros.h"
16 #include "base/metrics/histogram_macros.h" 16 #include "base/metrics/histogram_macros.h"
17 #include "base/rand_util.h" 17 #include "base/rand_util.h"
18 #include "base/strings/stringprintf.h" 18 #include "base/strings/stringprintf.h"
19 #include "base/thread_task_runner_handle.h" 19 #include "base/threading/thread_task_runner_handle.h"
20 #include "base/time/time.h" 20 #include "base/time/time.h"
21 #include "base/trace_event/trace_event.h" 21 #include "base/trace_event/trace_event.h"
22 #include "build/build_config.h" 22 #include "build/build_config.h"
23 #include "sql/connection.h" 23 #include "sql/connection.h"
24 #include "sql/error_delegate_util.h" 24 #include "sql/error_delegate_util.h"
25 #include "sql/statement.h" 25 #include "sql/statement.h"
26 #include "sql/transaction.h" 26 #include "sql/transaction.h"
27 #include "sync/internal_api/public/base/node_ordinal.h" 27 #include "sync/internal_api/public/base/node_ordinal.h"
28 #include "sync/protocol/bookmark_specifics.pb.h" 28 #include "sync/protocol/bookmark_specifics.pb.h"
29 #include "sync/protocol/sync.pb.h" 29 #include "sync/protocol/sync.pb.h"
(...skipping 1729 matching lines...) Expand 10 before | Expand all | Expand 10 after
1759 DCHECK(CalledOnValidThread()); 1759 DCHECK(CalledOnValidThread());
1760 DCHECK(!catastrophic_error_handler.is_null()); 1760 DCHECK(!catastrophic_error_handler.is_null());
1761 catastrophic_error_handler_ = catastrophic_error_handler; 1761 catastrophic_error_handler_ = catastrophic_error_handler;
1762 sql::Connection::ErrorCallback error_callback = 1762 sql::Connection::ErrorCallback error_callback =
1763 base::Bind(&OnSqliteError, catastrophic_error_handler_); 1763 base::Bind(&OnSqliteError, catastrophic_error_handler_);
1764 db_->set_error_callback(error_callback); 1764 db_->set_error_callback(error_callback);
1765 } 1765 }
1766 1766
1767 } // namespace syncable 1767 } // namespace syncable
1768 } // namespace syncer 1768 } // namespace syncer
OLDNEW
« no previous file with comments | « sync/sessions/model_type_registry.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698