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

Side by Side Diff: components/sync/api/data_type_error_handler_impl.cc

Issue 2401223002: [Sync] Renaming sync/api* to sync/model*. (Closed)
Patch Set: Missed a comment in a DEPS file, and rebasing. Created 4 years, 2 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
OLDNEW
(Empty)
1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "components/sync/api/data_type_error_handler_impl.h"
6
7 #include "base/bind.h"
8 #include "base/metrics/histogram.h"
9
10 namespace syncer {
11
12 DataTypeErrorHandlerImpl::DataTypeErrorHandlerImpl(
13 const scoped_refptr<base::SingleThreadTaskRunner>& ui_thread,
14 const base::Closure& dump_stack,
15 const ErrorCallback& sync_callback)
16 : ui_thread_(ui_thread),
17 dump_stack_(dump_stack),
18 sync_callback_(sync_callback) {}
19
20 DataTypeErrorHandlerImpl::~DataTypeErrorHandlerImpl() {}
21
22 void DataTypeErrorHandlerImpl::OnUnrecoverableError(const SyncError& error) {
23 if (!dump_stack_.is_null())
24 dump_stack_.Run();
25 UMA_HISTOGRAM_ENUMERATION("Sync.DataTypeRunFailures",
26 ModelTypeToHistogramInt(error.model_type()),
27 MODEL_TYPE_COUNT);
28 ui_thread_->PostTask(error.location(), base::Bind(sync_callback_, error));
29 }
30
31 SyncError DataTypeErrorHandlerImpl::CreateAndUploadError(
32 const tracked_objects::Location& location,
33 const std::string& message,
34 ModelType type) {
35 if (!dump_stack_.is_null())
36 dump_stack_.Run();
37 return SyncError(location, SyncError::DATATYPE_ERROR, message, type);
38 }
39
40 std::unique_ptr<DataTypeErrorHandler> DataTypeErrorHandlerImpl::Copy() const {
41 return base::MakeUnique<DataTypeErrorHandlerImpl>(ui_thread_, dump_stack_,
42 sync_callback_);
43 }
44
45 } // namespace syncer
OLDNEW
« no previous file with comments | « components/sync/api/data_type_error_handler_impl.h ('k') | components/sync/api/data_type_error_handler_mock.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698