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

Unified Diff: sync/engine/directory_type_debug_info_emitter.cc

Issue 254473008: sync: Introduce classes for per-type counters (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Review fixes Created 6 years, 8 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/directory_type_debug_info_emitter.cc
diff --git a/sync/engine/directory_type_debug_info_emitter.cc b/sync/engine/directory_type_debug_info_emitter.cc
deleted file mode 100644
index 678878668ba8517de1e526f87c75c276117c1259..0000000000000000000000000000000000000000
--- a/sync/engine/directory_type_debug_info_emitter.cc
+++ /dev/null
@@ -1,26 +0,0 @@
-// Copyright 2014 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "sync/engine/directory_type_debug_info_emitter.h"
-
-#include "sync/syncable/syncable_read_transaction.h"
-
-namespace syncer {
-
-DirectoryTypeDebugInfoEmitter::DirectoryTypeDebugInfoEmitter(
- syncable::Directory* directory,
- syncer::ModelType type)
- : directory_(directory),
- type_(type) {}
-
-DirectoryTypeDebugInfoEmitter::~DirectoryTypeDebugInfoEmitter() {}
-
-scoped_ptr<base::ListValue> DirectoryTypeDebugInfoEmitter::GetAllNodes() {
- syncable::ReadTransaction trans(FROM_HERE, directory_);
- scoped_ptr<base::ListValue> nodes(
- directory_->GetNodeDetailsForType(&trans, type_));
- return nodes.Pass();
-}
-
-} // namespace syncer
« no previous file with comments | « sync/engine/directory_type_debug_info_emitter.h ('k') | sync/internal_api/public/sessions/commit_counters.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698