summaryrefslogtreecommitdiffstats
path: root/chrome/browser
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser')
-rw-r--r--chrome/browser/sync/api/sync_error.cc3
-rw-r--r--chrome/browser/sync/api/sync_error.h2
2 files changed, 0 insertions, 5 deletions
diff --git a/chrome/browser/sync/api/sync_error.cc b/chrome/browser/sync/api/sync_error.cc
index 41fcbca..c916bae 100644
--- a/chrome/browser/sync/api/sync_error.cc
+++ b/chrome/browser/sync/api/sync_error.cc
@@ -22,9 +22,6 @@ SyncError::SyncError(const SyncError& other) {
Copy(other);
}
-SyncError::~SyncError() {
-}
-
SyncError& SyncError::operator=(const SyncError& other) {
if (this == &other) {
return *this;
diff --git a/chrome/browser/sync/api/sync_error.h b/chrome/browser/sync/api/sync_error.h
index ff43a27..326e9d4 100644
--- a/chrome/browser/sync/api/sync_error.h
+++ b/chrome/browser/sync/api/sync_error.h
@@ -36,8 +36,6 @@ class SyncError {
SyncError(const SyncError& other);
SyncError& operator=(const SyncError& other);
- ~SyncError();
-
// Reset the current error to a new error. May be called irrespective of
// whether IsSet() is true. After this is called, IsSet() will return true.
// Will print the new error to LOG(ERROR).