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

Unified Diff: components/sync/driver/proxy_data_type_controller.cc

Issue 2374913002: [USS] Show USS counters in about:sync page (Closed)
Patch Set: re-comments 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « components/sync/driver/proxy_data_type_controller.h ('k') | components/sync/driver/resources/about.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/sync/driver/proxy_data_type_controller.cc
diff --git a/components/sync/driver/proxy_data_type_controller.cc b/components/sync/driver/proxy_data_type_controller.cc
index 8188e38378db45eb8ebe8165c600333a8babf010..d3bf8f954a5c774a5c28c44e27ab62cee4237911 100644
--- a/components/sync/driver/proxy_data_type_controller.cc
+++ b/components/sync/driver/proxy_data_type_controller.cc
@@ -64,6 +64,12 @@ void ProxyDataTypeController::GetAllNodes(const AllNodesCallback& callback) {
callback.Run(type(), base::MakeUnique<base::ListValue>());
}
+void ProxyDataTypeController::GetStatusCounters(
+ const StatusCountersCallback& callback) {
+ syncer::StatusCounters counters;
+ callback.Run(type(), counters);
+}
+
std::unique_ptr<DataTypeErrorHandler>
ProxyDataTypeController::CreateErrorHandler() {
NOTREACHED();
« no previous file with comments | « components/sync/driver/proxy_data_type_controller.h ('k') | components/sync/driver/resources/about.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698