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

Unified Diff: chrome/browser/sync/syncable/transaction_observer.h

Issue 8741001: Remove sync OnTransaction{Start,End} notification (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 1 month 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 | « chrome/browser/sync/syncable/syncable.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/sync/syncable/transaction_observer.h
diff --git a/chrome/browser/sync/syncable/transaction_observer.h b/chrome/browser/sync/syncable/transaction_observer.h
index 5af6a429dac770398733508508328f55450465b5..ebf06cd8e20c6aff6cc29e205da3bad2c85221ca 100644
--- a/chrome/browser/sync/syncable/transaction_observer.h
+++ b/chrome/browser/sync/syncable/transaction_observer.h
@@ -9,23 +9,13 @@
#include "chrome/browser/sync/syncable/model_type.h"
#include "chrome/browser/sync/syncable/syncable.h"
-namespace tracked_objects {
-class Location;
-} // namespace tracked_objects
-
namespace syncable {
class TransactionObserver {
public:
- virtual void OnTransactionStart(
- const tracked_objects::Location& location,
- const WriterTag& writer) = 0;
virtual void OnTransactionWrite(
const ImmutableWriteTransactionInfo& write_transaction_info,
const ModelTypeBitSet& models_with_changes) = 0;
- virtual void OnTransactionEnd(
- const tracked_objects::Location& location,
- const WriterTag& writer) = 0;
protected:
virtual ~TransactionObserver() {}
};
« no previous file with comments | « chrome/browser/sync/syncable/syncable.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698