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

Unified Diff: android_webview/browser/aw_form_database_service.h

Issue 14503010: Implement WebViewDatabase's hasFormData API for chromium based webview. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix typos 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: android_webview/browser/aw_form_database_service.h
diff --git a/android_webview/browser/aw_form_database_service.h b/android_webview/browser/aw_form_database_service.h
new file mode 100644
index 0000000000000000000000000000000000000000..3a498a8f04bff524b6a84e830c748f88f4bf4e5b
--- /dev/null
+++ b/android_webview/browser/aw_form_database_service.h
@@ -0,0 +1,61 @@
+// 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 ANDROID_WEBVIEW_BROWSER_AW_FORM_DATABASE_SERVICE_H_
+#define ANDROID_WEBVIEW_BROWSER_AW_FORM_DATABASE_SERVICE_H_
+
+#include "base/basictypes.h"
+#include "base/files/file_path.h"
+#include "base/synchronization/waitable_event.h"
+#include "components/autofill/browser/webdata/autofill_webdata_service.h"
+#include "components/webdata/common/web_data_service_consumer.h"
+#include "components/webdata/common/web_database_service.h"
+
+namespace android_webview {
+
+// Handles the database operations necessary to implement autocomplete
+// functionality. This includes creating and initializing the components that
+// handle the database backend, and providing a synchronous interface when
+// needed (the chromium database components have an async. interface).
+class AwFormDatabaseService : public WebDataServiceConsumer {
benm (inactive) 2013/04/29 18:00:03 Can we refactor the AwFormDatabase class from the
sgurun-gerrit only 2013/04/29 19:32:39 makes sense. Will try to move most of the logic he
+ public:
+ AwFormDatabaseService(const base::FilePath path);
+
+ virtual ~AwFormDatabaseService();
+
+ // TODO(sgurun) Who will call this?
+ void Shutdown();
+
+ // Returns whether the form has any elements stored. May do
+ // IO access and block.
+ bool HasFormElements();
+
+ scoped_refptr<autofill::AutofillWebDataService>
+ get_autofill_webdata_service();
+
+ // WebDataServiceConsumer implementation.
+ virtual void OnWebDataServiceRequestDone(
+ WebDataServiceBase::Handle h,
+ const WDTypedResult* result) OVERRIDE;
+
+ private:
+ // Cancels the currently pending WebDataService query, if there is one.
+ void CancelPendingQuery();
+
+ void HasFormElementsImpl();
+
+ // Stores the query handle when an async database query is executed.
+ WebDataServiceBase::Handle pending_query_handle_;
+ bool has_form_elements_;
+ base::WaitableEvent completion_;
+
+ scoped_refptr<autofill::AutofillWebDataService> autofill_data_;
+ scoped_refptr<WebDatabaseService> web_database_;
+
+ DISALLOW_COPY_AND_ASSIGN(AwFormDatabaseService);
+};
+
+} // namespace android_webview
+
+#endif // ANDROID_WEBVIEW_BROWSER_AW_FORM_DATABASE_SERVICE_H_

Powered by Google App Engine
This is Rietveld 408576698