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

Unified Diff: sync/api/sync_change.h

Issue 10698141: Revert 145993 - [Sync] Add location parameter to SyncChange in Sync API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 5 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 | « chrome/browser/webdata/autofill_profile_syncable_service_unittest.cc ('k') | sync/api/sync_change.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sync/api/sync_change.h
===================================================================
--- sync/api/sync_change.h (revision 145994)
+++ sync/api/sync_change.h (working copy)
@@ -10,7 +10,6 @@
#include <string>
#include <vector>
-#include "base/location.h"
#include "sync/api/sync_data.h"
namespace syncer {
@@ -32,10 +31,7 @@
// Default constructor creates an invalid change.
SyncChange();
// Create a new change with the specified sync data.
- SyncChange(
- const tracked_objects::Location& from_here,
- SyncChangeType change_type,
- const SyncData& sync_data);
+ SyncChange(SyncChangeType change_type, const SyncData& sync_data);
~SyncChange();
// Copy constructor and assignment operator welcome.
@@ -60,8 +56,6 @@
std::string ToString() const;
private:
- tracked_objects::Location location_;
-
SyncChangeType change_type_;
// An immutable container for the data of this SyncChange. Whenever
« no previous file with comments | « chrome/browser/webdata/autofill_profile_syncable_service_unittest.cc ('k') | sync/api/sync_change.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698