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

Unified Diff: chrome/browser/sync_file_system/sync_file_system_service.cc

Issue 16398011: Show ExtensionID->OriginSyncStatus in syncfs-internals WebUI (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 7 years, 6 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: chrome/browser/sync_file_system/sync_file_system_service.cc
diff --git a/chrome/browser/sync_file_system/sync_file_system_service.cc b/chrome/browser/sync_file_system/sync_file_system_service.cc
index 21b2a2601069c52ea5078c6a026f2ca8d8175034..b8d55b979bc9e30c3ed1fcc50a0380591f8f666f 100644
--- a/chrome/browser/sync_file_system/sync_file_system_service.cc
+++ b/chrome/browser/sync_file_system/sync_file_system_service.cc
@@ -140,6 +140,12 @@ SyncServiceState SyncFileSystemService::GetSyncServiceState() {
return RemoteStateToSyncServiceState(remote_file_service_->GetCurrentState());
}
+void SyncFileSystemService::GetExtensionStatusMap(
+ std::map<GURL, std::string>* status_map) {
+ DCHECK(status_map);
+ remote_file_service_->GetOriginStatusMap(status_map);
+}
+
void SyncFileSystemService::GetFileSyncStatus(
const FileSystemURL& url, const SyncFileStatusCallback& callback) {
DCHECK(local_file_service_);

Powered by Google App Engine
This is Rietveld 408576698