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

Unified Diff: chrome/browser/chromeos/drive/file_system/operation_test_base.cc

Issue 137903002: Files.app: Add a drive sync error event to the fileBrowserPrivate API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 11 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/chromeos/drive/file_system/operation_test_base.cc
diff --git a/chrome/browser/chromeos/drive/file_system/operation_test_base.cc b/chrome/browser/chromeos/drive/file_system/operation_test_base.cc
index af934e4b4ea29f0754a5f01ccaba9dfe193a1aa9..bb7aa2f97ce781d882402dee407739b54ffa6ea8 100644
--- a/chrome/browser/chromeos/drive/file_system/operation_test_base.cc
+++ b/chrome/browser/chromeos/drive/file_system/operation_test_base.cc
@@ -41,6 +41,11 @@ void OperationTestBase::LoggingObserver::OnEntryUpdatedByOperation(
updated_local_ids_.insert(local_id);
}
+void OperationTestBase::LoggingObserver::OnDriveSyncError(
+ DriveSyncErrorType type) {
+ drive_sync_erros_.push_back(type);
+}
+
OperationTestBase::OperationTestBase() {
}

Powered by Google App Engine
This is Rietveld 408576698