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

Unified Diff: sync/engine/non_blocking_type_processor.cc

Issue 280693003: sync: Move NonBlockingTypeProcessor to sync/engine (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: git cl format Created 6 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 side-by-side diff with in-line comments
Download patch
Index: sync/engine/non_blocking_type_processor.cc
diff --git a/sync/internal_api/non_blocking_type_processor.cc b/sync/engine/non_blocking_type_processor.cc
similarity index 91%
rename from sync/internal_api/non_blocking_type_processor.cc
rename to sync/engine/non_blocking_type_processor.cc
index d426443a03c961d3824a18a4873e1b7c2ec66a93..68c65a228776550453eef1e84878f3fa7cb5b780 100644
--- a/sync/internal_api/non_blocking_type_processor.cc
+++ b/sync/engine/non_blocking_type_processor.cc
@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "sync/internal_api/public/non_blocking_type_processor.h"
+#include "sync/engine/non_blocking_type_processor.h"
#include "base/message_loop/message_loop_proxy.h"
#include "sync/engine/non_blocking_type_processor_core.h"
@@ -11,10 +11,11 @@
namespace syncer {
NonBlockingTypeProcessor::NonBlockingTypeProcessor(ModelType type)
- : type_(type),
- is_preferred_(false),
- is_connected_(false),
- weak_ptr_factory_(this) {}
+ : type_(type),
+ is_preferred_(false),
+ is_connected_(false),
+ weak_ptr_factory_(this) {
+}
NonBlockingTypeProcessor::~NonBlockingTypeProcessor() {
}

Powered by Google App Engine
This is Rietveld 408576698