OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #include "android_webview/native/form_database.h" | |
6 | |
7 #include "android_webview/browser/aw_browser_context.h" | |
8 #include "android_webview/browser/aw_content_browser_client.h" | |
9 #include "base/android/jni_android.h" | |
10 #include "base/logging.h" | |
11 #include "base/time.h" | |
12 #include "components/autofill/browser/webdata/autofill_webdata_service.h" | |
13 #include "jni/FormDatabase_jni.h" | |
14 | |
15 namespace android_webview { | |
16 | |
17 // static | |
18 void ClearFormData(JNIEnv*, jclass) { | |
19 AwBrowserContext* context = AwContentBrowserClient::GetAwBrowserContext(); | |
20 DCHECK(context); | |
21 | |
22 autofill::AutofillWebDataService* service = | |
23 autofill::AutofillWebDataService::FromBrowserContext(context).get(); | |
24 if (service == NULL) { | |
25 LOG(WARNING) << "No webdata service found, ignoring ClearFormData"; | |
26 return; | |
27 } | |
28 | |
29 base::Time begin; | |
benm (inactive)
2013/04/23 18:07:47
mm, what's the behavior of getting "the null time"
sgurun-gerrit only
2013/04/23 20:49:45
it is ok. This is also how it is used in the brows
| |
30 base::Time end = base::Time::Max(); | |
31 service->RemoveFormElementsAddedBetween(begin, end); | |
32 service->RemoveAutofillDataModifiedBetween(begin, end); | |
33 } | |
34 | |
35 bool RegisterFormDatabase(JNIEnv* env) { | |
36 return RegisterNativesImpl(env) >= 0; | |
37 } | |
38 | |
39 } // namespace android_webview | |
OLD | NEW |