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

Unified Diff: components/webdata/autofill/autofill_webdata_service_observer.h

Issue 13839013: Webdata Component tryjobs NOT FOR REVIEW (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: After WD/AF merge Created 7 years, 8 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: components/webdata/autofill/autofill_webdata_service_observer.h
diff --git a/components/webdata/autofill/autofill_webdata_service_observer.h b/components/webdata/autofill/autofill_webdata_service_observer.h
deleted file mode 100644
index ed032abcecb0f5fd6895b71e88a05a04d6177dcd..0000000000000000000000000000000000000000
--- a/components/webdata/autofill/autofill_webdata_service_observer.h
+++ /dev/null
@@ -1,37 +0,0 @@
-// Copyright (c) 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_WEBDATA_AUTOFILL_AUTOFILL_WEBDATA_SERVICE_OBSERVER_H_
-#define COMPONENTS_WEBDATA_AUTOFILL_AUTOFILL_WEBDATA_SERVICE_OBSERVER_H_
-
-#include "components/webdata/autofill/autofill_change.h"
-
-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 whenever the web database service has finished loading
- // the web database.
- virtual void WebDatabaseLoaded() {}
-
- // Called on UI thread when multiple Autofill entries have been modified by
- // Sync.
- virtual void AutofillMultipleChanged() {}
-
- protected:
- virtual ~AutofillWebDataServiceObserverOnUIThread() {}
-};
-
-#endif // COMPONENTS_WEBDATA_AUTOFILL_AUTOFILL_WEBDATA_SERVICE_OBSERVER_H_
« no previous file with comments | « components/webdata/autofill/autofill_webdata_service.cc ('k') | components/webdata/autofill/web_data_service_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698