summaryrefslogtreecommitdiffstats
path: root/chromium/components/autofill/core/browser/webdata/autofill_webdata_service_observer.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/components/autofill/core/browser/webdata/autofill_webdata_service_observer.h')
-rw-r--r--chromium/components/autofill/core/browser/webdata/autofill_webdata_service_observer.h37
1 files changed, 0 insertions, 37 deletions
diff --git a/chromium/components/autofill/core/browser/webdata/autofill_webdata_service_observer.h b/chromium/components/autofill/core/browser/webdata/autofill_webdata_service_observer.h
deleted file mode 100644
index f4333e58bc6..00000000000
--- a/chromium/components/autofill/core/browser/webdata/autofill_webdata_service_observer.h
+++ /dev/null
@@ -1,37 +0,0 @@
-// Copyright 2013 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_WEBDATA_AUTOFILL_WEBDATA_SERVICE_OBSERVER_H_
-#define COMPONENTS_AUTOFILL_CORE_BROWSER_WEBDATA_AUTOFILL_WEBDATA_SERVICE_OBSERVER_H_
-
-#include "components/autofill/core/browser/webdata/autofill_change.h"
-
-namespace autofill {
-
-class AutofillWebDataServiceObserverOnDBThread {
- public:
- // Called on DB thread whenever Autofill entries are changed.
- virtual void AutofillEntriesChanged(const AutofillChangeList& changes) {}
-
- // Called on DB thread when an AutofillProfile has been added/removed/updated
- // in the WebDatabase.
- virtual void AutofillProfileChanged(const AutofillProfileChange& change) {}
-
- protected:
- virtual ~AutofillWebDataServiceObserverOnDBThread() {}
-};
-
-class AutofillWebDataServiceObserverOnUIThread {
- public:
- // Called on UI thread when multiple Autofill entries have been modified by
- // Sync.
- virtual void AutofillMultipleChanged() {}
-
- protected:
- virtual ~AutofillWebDataServiceObserverOnUIThread() {}
-};
-
-} // namespace autofill
-
-#endif // COMPONENTS_AUTOFILL_CORE_BROWSER_WEBDATA_AUTOFILL_WEBDATA_SERVICE_OBSERVER_H_